├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── components ├── mad │ ├── CMakeLists.txt │ ├── D.dat │ ├── bit.c │ ├── bit.h │ ├── config.h │ ├── decoder.c │ ├── decoder.h │ ├── fixed.c │ ├── fixed.h │ ├── frame.c │ ├── frame.h │ ├── global.h │ ├── huffman.c │ ├── huffman.h │ ├── imdct_s.dat │ ├── layer12.c │ ├── layer12.h │ ├── layer3.c │ ├── layer3.h │ ├── mad.h │ ├── qc_table.dat │ ├── rq_table.dat │ ├── sf_table.dat │ ├── stream.c │ ├── stream.h │ ├── synth.c │ ├── synth.h │ ├── timer.c │ ├── timer.h │ ├── version.c │ └── version.h ├── nfc │ ├── CMakeLists.txt │ ├── include │ │ └── nfc │ │ │ ├── nfc-emulation.h │ │ │ ├── nfc-types.h │ │ │ └── nfc.h │ └── libnfc │ │ ├── buses │ │ ├── uart.c │ │ └── uart.h │ │ ├── chips │ │ ├── pn53x-internal.h │ │ ├── pn53x.c │ │ └── pn53x.h │ │ ├── conf.c │ │ ├── conf.h │ │ ├── config.h │ │ ├── drivers.h │ │ ├── drivers │ │ ├── pn532_uart.c │ │ └── pn532_uart.h │ │ ├── iso14443-subr.c │ │ ├── iso7816.h │ │ ├── log-internal.c │ │ ├── log-internal.h │ │ ├── log.c │ │ ├── log.h │ │ ├── mirror-subr.c │ │ ├── mirror-subr.h │ │ ├── nfc-device.c │ │ ├── nfc-emulation.c │ │ ├── nfc-internal.c │ │ ├── nfc-internal.h │ │ ├── nfc.c │ │ ├── target-subr.c │ │ └── target-subr.h └── ugfx │ ├── .gitignore │ ├── CMakeLists.txt │ ├── drivers │ └── gdisp │ │ ├── ST7735 │ │ ├── ST7735.h │ │ ├── driver.mk │ │ ├── gdisp_lld_ST7735.c │ │ ├── gdisp_lld_board.h │ │ └── gdisp_lld_config.h │ │ └── ST7789 │ │ ├── ST7789.h │ │ ├── driver.mk │ │ ├── gdisp_lld_ST7789.c │ │ ├── gdisp_lld_board.h │ │ └── gdisp_lld_config.h │ ├── ffconf.h │ ├── gfx.h │ ├── gfx.mk │ ├── gfxconf.h │ ├── mf_bwfont.h │ ├── mf_rlefont.h │ ├── mf_scaledfont.h │ ├── pffconf.h │ └── src │ ├── gadc │ ├── gadc.c │ ├── gadc.h │ ├── gadc.mk │ ├── gadc_driver.h │ ├── gadc_mk.c │ ├── gadc_options.h │ └── gadc_rules.h │ ├── gaudio │ ├── gaudio.c │ ├── gaudio.h │ ├── gaudio.mk │ ├── gaudio_driver_play.h │ ├── gaudio_driver_record.h │ ├── gaudio_mk.c │ ├── gaudio_options.h │ └── gaudio_rules.h │ ├── gdisp │ ├── fonts │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans.license │ │ ├── DejaVuSans.ttf │ │ ├── DejaVuSans10.c │ │ ├── DejaVuSans12.c │ │ ├── DejaVuSans12_aa.c │ │ ├── DejaVuSans16.c │ │ ├── DejaVuSans16_aa.c │ │ ├── DejaVuSans20.c │ │ ├── DejaVuSans20_aa.c │ │ ├── DejaVuSans24.c │ │ ├── DejaVuSans24_aa.c │ │ ├── DejaVuSans32.c │ │ ├── DejaVuSans32_aa.c │ │ ├── DejaVuSansBold12.c │ │ ├── DejaVuSansBold12_aa.c │ │ ├── DejaVuSerif.license │ │ ├── DejaVuSerif.ttf │ │ ├── LargeNumbers.c │ │ ├── UI1.c │ │ ├── UI2.c │ │ ├── build_fonts.sh │ │ ├── fixed_10x20.bdf │ │ ├── fixed_10x20.c │ │ ├── fixed_5x8.bdf │ │ ├── fixed_5x8.c │ │ ├── fixed_7x14.bdf │ │ ├── fixed_7x14.c │ │ └── fonts.h │ ├── gdisp.c │ ├── gdisp.h │ ├── gdisp.mk │ ├── gdisp_colors.h │ ├── gdisp_driver.h │ ├── gdisp_fonts.c │ ├── gdisp_image.c │ ├── gdisp_image.h │ ├── gdisp_image_bmp.c │ ├── gdisp_image_gif.c │ ├── gdisp_image_jpg.c │ ├── gdisp_image_native.c │ ├── gdisp_image_png.c │ ├── gdisp_image_support.h │ ├── gdisp_mk.c │ ├── gdisp_options.h │ ├── gdisp_pixmap.c │ ├── gdisp_pixmap.h │ ├── gdisp_rules.h │ └── mcufont │ │ ├── mcufont.h │ │ ├── mcufont.mk │ │ ├── mf_bwfont.c │ │ ├── mf_bwfont.h │ │ ├── mf_config.h │ │ ├── mf_encoding.c │ │ ├── mf_encoding.h │ │ ├── mf_font.c │ │ ├── mf_font.h │ │ ├── mf_justify.c │ │ ├── mf_justify.h │ │ ├── mf_kerning.c │ │ ├── mf_kerning.h │ │ ├── mf_rlefont.c │ │ ├── mf_rlefont.h │ │ ├── mf_scaledfont.c │ │ ├── mf_scaledfont.h │ │ ├── mf_wordwrap.c │ │ └── mf_wordwrap.h │ ├── gdriver │ ├── gdriver.c │ ├── gdriver.h │ ├── gdriver.mk │ ├── gdriver_mk.c │ ├── gdriver_options.h │ └── gdriver_rules.h │ ├── gevent │ ├── gevent.c │ ├── gevent.h │ ├── gevent.mk │ ├── gevent_mk.c │ ├── gevent_options.h │ └── gevent_rules.h │ ├── gfile │ ├── gfile.c │ ├── gfile.h │ ├── gfile.mk │ ├── gfile_fatfs_diskio_chibios.c │ ├── gfile_fatfs_wrapper.c │ ├── gfile_fatfs_wrapper.h │ ├── gfile_fs.h │ ├── gfile_fs_chibios.c │ ├── gfile_fs_fatfs.c │ ├── gfile_fs_mem.c │ ├── gfile_fs_native.c │ ├── gfile_fs_petitfs.c │ ├── gfile_fs_ram.c │ ├── gfile_fs_rom.c │ ├── gfile_fs_strings.c │ ├── gfile_mk.c │ ├── gfile_options.h │ ├── gfile_petitfs_diskio_chibios.c │ ├── gfile_petitfs_wrapper.c │ ├── gfile_petitfs_wrapper.h │ ├── gfile_printg.c │ ├── gfile_rules.h │ ├── gfile_scang.c │ └── gfile_stdio.c │ ├── gfx.c │ ├── gfx_compilers.h │ ├── gfx_mk.c │ ├── ginput │ ├── ginput.c │ ├── ginput.h │ ├── ginput.mk │ ├── ginput_dial.c │ ├── ginput_dial.h │ ├── ginput_driver_dial.h │ ├── ginput_driver_keyboard.h │ ├── ginput_driver_mouse.h │ ├── ginput_driver_toggle.h │ ├── ginput_keyboard.c │ ├── ginput_keyboard.h │ ├── ginput_keyboard_microcode.c │ ├── ginput_keyboard_microcode.h │ ├── ginput_mk.c │ ├── ginput_mouse.c │ ├── ginput_mouse.h │ ├── ginput_options.h │ ├── ginput_rules.h │ ├── ginput_toggle.c │ └── ginput_toggle.h │ ├── gmisc │ ├── gmisc.c │ ├── gmisc.h │ ├── gmisc.mk │ ├── gmisc_arrayops.c │ ├── gmisc_hittest.c │ ├── gmisc_matrix2d.c │ ├── gmisc_mk.c │ ├── gmisc_options.h │ ├── gmisc_rules.h │ └── gmisc_trig.c │ ├── gos │ ├── gos.h │ ├── gos.mk │ ├── gos_arduino.c │ ├── gos_arduino.h │ ├── gos_chibios.c │ ├── gos_chibios.h │ ├── gos_cmsis.c │ ├── gos_cmsis.h │ ├── gos_cmsis2.c │ ├── gos_cmsis2.h │ ├── gos_ecos.c │ ├── gos_ecos.h │ ├── gos_freertos.c │ ├── gos_freertos.h │ ├── gos_keil.h │ ├── gos_linux.c │ ├── gos_linux.h │ ├── gos_mk.c │ ├── gos_nios.c │ ├── gos_nios.h │ ├── gos_options.h │ ├── gos_osx.c │ ├── gos_osx.h │ ├── gos_qt.cpp │ ├── gos_qt.h │ ├── gos_raw32.c │ ├── gos_raw32.h │ ├── gos_rawrtos.c │ ├── gos_rawrtos.h │ ├── gos_rtx5.h │ ├── gos_rules.h │ ├── gos_win32.c │ ├── gos_win32.h │ ├── gos_x_heap.c │ ├── gos_x_heap.h │ ├── gos_x_threads.c │ ├── gos_x_threads.h │ ├── gos_x_threads_cortexm01.h │ ├── gos_x_threads_cortexm347.h │ ├── gos_x_threads_cortexm47fp.h │ ├── gos_zephyr.c │ └── gos_zephyr.h │ ├── gqueue │ ├── gqueue.c │ ├── gqueue.h │ ├── gqueue.mk │ ├── gqueue_mk.c │ ├── gqueue_options.h │ └── gqueue_rules.h │ ├── gtimer │ ├── gtimer.c │ ├── gtimer.h │ ├── gtimer.mk │ ├── gtimer_mk.c │ ├── gtimer_options.h │ └── gtimer_rules.h │ ├── gtrans │ ├── gtrans.c │ ├── gtrans.h │ ├── gtrans.mk │ ├── gtrans_mk.c │ ├── gtrans_options.h │ └── gtrans_rules.h │ └── gwin │ ├── gwin.c │ ├── gwin.h │ ├── gwin.mk │ ├── gwin_button.c │ ├── gwin_button.h │ ├── gwin_checkbox.c │ ├── gwin_checkbox.h │ ├── gwin_class.h │ ├── gwin_console.c │ ├── gwin_console.h │ ├── gwin_container.c │ ├── gwin_container.h │ ├── gwin_frame.c │ ├── gwin_frame.h │ ├── gwin_gl3d.c │ ├── gwin_gl3d.h │ ├── gwin_graph.c │ ├── gwin_graph.h │ ├── gwin_image.c │ ├── gwin_image.h │ ├── gwin_keyboard.c │ ├── gwin_keyboard.h │ ├── gwin_keyboard_layout.c │ ├── gwin_keyboard_layout.h │ ├── gwin_label.c │ ├── gwin_label.h │ ├── gwin_list.c │ ├── gwin_list.h │ ├── gwin_mk.c │ ├── gwin_options.h │ ├── gwin_progressbar.c │ ├── gwin_progressbar.h │ ├── gwin_radio.c │ ├── gwin_radio.h │ ├── gwin_rules.h │ ├── gwin_slider.c │ ├── gwin_slider.h │ ├── gwin_tabset.c │ ├── gwin_tabset.h │ ├── gwin_textedit.c │ ├── gwin_textedit.h │ ├── gwin_widget.c │ ├── gwin_widget.h │ └── gwin_wm.c ├── docs ├── acode.jpg └── board.png ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── inc │ ├── board │ │ ├── pn532.h │ │ ├── st7735.h │ │ └── st7789.h │ ├── chip │ │ ├── i2s.h │ │ ├── nvs.h │ │ ├── spi.h │ │ ├── uart.h │ │ └── wifi.h │ ├── core │ │ ├── app.h │ │ └── os.h │ └── user │ │ ├── audio_player.h │ │ ├── gui.h │ │ ├── http_app.h │ │ ├── http_app_ota.h │ │ ├── http_app_token.h │ │ ├── key.h │ │ ├── key_handle.h │ │ ├── led.h │ │ ├── nfc_app.h │ │ └── ntp.h ├── res │ ├── ani │ │ ├── ani0_160x80.gif │ │ ├── ani0_240x135.gif │ │ ├── ani1_160x80.gif │ │ ├── ani1_240x135.gif │ │ ├── ani2_160x80.gif │ │ ├── ani2_240x135.gif │ │ ├── ani3_160x80.gif │ │ ├── ani3_240x135.gif │ │ ├── ani4_160x80.gif │ │ ├── ani4_240x135.gif │ │ ├── ani5_160x80.gif │ │ ├── ani5_240x135.gif │ │ ├── ani6_160x80.gif │ │ ├── ani6_240x135.gif │ │ ├── ani7_160x80.gif │ │ ├── ani7_240x135.gif │ │ ├── ani8_160x80.gif │ │ └── ani8_240x135.gif │ ├── cert │ │ └── cert0.pem │ └── snd │ │ ├── snd0.mp3 │ │ ├── snd1.mp3 │ │ ├── snd2.mp3 │ │ ├── snd3.mp3 │ │ ├── snd4.mp3 │ │ ├── snd5.mp3 │ │ ├── snd6.mp3 │ │ └── snd7.mp3 └── src │ ├── app_main.c │ ├── board │ ├── pn532.c │ ├── st7735.c │ └── st7789.c │ ├── chip │ ├── i2s.c │ ├── nvs.c │ ├── spi.c │ ├── uart.c │ └── wifi.c │ ├── core │ ├── app.c │ └── os.c │ └── user │ ├── audio_player.c │ ├── gui.c │ ├── http_app.c │ ├── http_app_ota.c │ ├── http_app_token.c │ ├── key.c │ ├── key_handle.c │ ├── led.c │ ├── nfc_app.c │ └── ntp.c ├── partitions.csv └── sdkconfig.defaults /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | .* 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/README.md -------------------------------------------------------------------------------- /components/mad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/CMakeLists.txt -------------------------------------------------------------------------------- /components/mad/D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/D.dat -------------------------------------------------------------------------------- /components/mad/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/bit.c -------------------------------------------------------------------------------- /components/mad/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/bit.h -------------------------------------------------------------------------------- /components/mad/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/config.h -------------------------------------------------------------------------------- /components/mad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/decoder.c -------------------------------------------------------------------------------- /components/mad/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/decoder.h -------------------------------------------------------------------------------- /components/mad/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/fixed.c -------------------------------------------------------------------------------- /components/mad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/fixed.h -------------------------------------------------------------------------------- /components/mad/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/frame.c -------------------------------------------------------------------------------- /components/mad/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/frame.h -------------------------------------------------------------------------------- /components/mad/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/global.h -------------------------------------------------------------------------------- /components/mad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/huffman.c -------------------------------------------------------------------------------- /components/mad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/huffman.h -------------------------------------------------------------------------------- /components/mad/imdct_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/imdct_s.dat -------------------------------------------------------------------------------- /components/mad/layer12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/layer12.c -------------------------------------------------------------------------------- /components/mad/layer12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/layer12.h -------------------------------------------------------------------------------- /components/mad/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/layer3.c -------------------------------------------------------------------------------- /components/mad/layer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/layer3.h -------------------------------------------------------------------------------- /components/mad/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/mad.h -------------------------------------------------------------------------------- /components/mad/qc_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/qc_table.dat -------------------------------------------------------------------------------- /components/mad/rq_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/rq_table.dat -------------------------------------------------------------------------------- /components/mad/sf_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/sf_table.dat -------------------------------------------------------------------------------- /components/mad/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/stream.c -------------------------------------------------------------------------------- /components/mad/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/stream.h -------------------------------------------------------------------------------- /components/mad/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/synth.c -------------------------------------------------------------------------------- /components/mad/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/synth.h -------------------------------------------------------------------------------- /components/mad/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/timer.c -------------------------------------------------------------------------------- /components/mad/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/timer.h -------------------------------------------------------------------------------- /components/mad/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/version.c -------------------------------------------------------------------------------- /components/mad/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/mad/version.h -------------------------------------------------------------------------------- /components/nfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/CMakeLists.txt -------------------------------------------------------------------------------- /components/nfc/include/nfc/nfc-emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/include/nfc/nfc-emulation.h -------------------------------------------------------------------------------- /components/nfc/include/nfc/nfc-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/include/nfc/nfc-types.h -------------------------------------------------------------------------------- /components/nfc/include/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/include/nfc/nfc.h -------------------------------------------------------------------------------- /components/nfc/libnfc/buses/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/buses/uart.c -------------------------------------------------------------------------------- /components/nfc/libnfc/buses/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/buses/uart.h -------------------------------------------------------------------------------- /components/nfc/libnfc/chips/pn53x-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/chips/pn53x-internal.h -------------------------------------------------------------------------------- /components/nfc/libnfc/chips/pn53x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/chips/pn53x.c -------------------------------------------------------------------------------- /components/nfc/libnfc/chips/pn53x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/chips/pn53x.h -------------------------------------------------------------------------------- /components/nfc/libnfc/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/conf.c -------------------------------------------------------------------------------- /components/nfc/libnfc/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/conf.h -------------------------------------------------------------------------------- /components/nfc/libnfc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/config.h -------------------------------------------------------------------------------- /components/nfc/libnfc/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/drivers.h -------------------------------------------------------------------------------- /components/nfc/libnfc/drivers/pn532_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/drivers/pn532_uart.c -------------------------------------------------------------------------------- /components/nfc/libnfc/drivers/pn532_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/drivers/pn532_uart.h -------------------------------------------------------------------------------- /components/nfc/libnfc/iso14443-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/iso14443-subr.c -------------------------------------------------------------------------------- /components/nfc/libnfc/iso7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/iso7816.h -------------------------------------------------------------------------------- /components/nfc/libnfc/log-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/log-internal.c -------------------------------------------------------------------------------- /components/nfc/libnfc/log-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/log-internal.h -------------------------------------------------------------------------------- /components/nfc/libnfc/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/log.c -------------------------------------------------------------------------------- /components/nfc/libnfc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/log.h -------------------------------------------------------------------------------- /components/nfc/libnfc/mirror-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/mirror-subr.c -------------------------------------------------------------------------------- /components/nfc/libnfc/mirror-subr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/mirror-subr.h -------------------------------------------------------------------------------- /components/nfc/libnfc/nfc-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/nfc-device.c -------------------------------------------------------------------------------- /components/nfc/libnfc/nfc-emulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/nfc-emulation.c -------------------------------------------------------------------------------- /components/nfc/libnfc/nfc-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/nfc-internal.c -------------------------------------------------------------------------------- /components/nfc/libnfc/nfc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/nfc-internal.h -------------------------------------------------------------------------------- /components/nfc/libnfc/nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/nfc.c -------------------------------------------------------------------------------- /components/nfc/libnfc/target-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/target-subr.c -------------------------------------------------------------------------------- /components/nfc/libnfc/target-subr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/nfc/libnfc/target-subr.h -------------------------------------------------------------------------------- /components/ugfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/.gitignore -------------------------------------------------------------------------------- /components/ugfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/CMakeLists.txt -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7735/ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7735/ST7735.h -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7735/driver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7735/driver.mk -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7735/gdisp_lld_ST7735.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7735/gdisp_lld_ST7735.c -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7735/gdisp_lld_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7735/gdisp_lld_board.h -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7735/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7735/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7789/ST7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7789/ST7789.h -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7789/driver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7789/driver.mk -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7789/gdisp_lld_ST7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7789/gdisp_lld_ST7789.c -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7789/gdisp_lld_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7789/gdisp_lld_board.h -------------------------------------------------------------------------------- /components/ugfx/drivers/gdisp/ST7789/gdisp_lld_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/drivers/gdisp/ST7789/gdisp_lld_config.h -------------------------------------------------------------------------------- /components/ugfx/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/ffconf.h -------------------------------------------------------------------------------- /components/ugfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/gfx.h -------------------------------------------------------------------------------- /components/ugfx/gfx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/gfx.mk -------------------------------------------------------------------------------- /components/ugfx/gfxconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/gfxconf.h -------------------------------------------------------------------------------- /components/ugfx/mf_bwfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/mf_bwfont.h -------------------------------------------------------------------------------- /components/ugfx/mf_rlefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/mf_rlefont.h -------------------------------------------------------------------------------- /components/ugfx/mf_scaledfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/mf_scaledfont.h -------------------------------------------------------------------------------- /components/ugfx/pffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/pffconf.h -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc.c -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc.h -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc.mk -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc_driver.h -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gadc/gadc_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gadc/gadc_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio.c -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio.h -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio.mk -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio_driver_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio_driver_play.h -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio_driver_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio_driver_record.h -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gaudio/gaudio_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gaudio/gaudio_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans.license -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans10.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans12.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans12_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans12_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans16.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans16_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans16_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans20.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans20_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans20_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans24.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans24_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans24_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans32.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSans32_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSans32_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSansBold12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSansBold12.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSansBold12_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSansBold12_aa.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSerif.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSerif.license -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/LargeNumbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/LargeNumbers.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/UI1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/UI1.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/UI2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/UI2.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/build_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/build_fonts.sh -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_10x20.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_10x20.bdf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_10x20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_10x20.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_5x8.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_5x8.bdf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_5x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_5x8.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_7x14.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_7x14.bdf -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fixed_7x14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fixed_7x14.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/fonts/fonts.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp.mk -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_colors.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_driver.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_fonts.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_bmp.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_gif.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_jpg.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_native.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_png.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_image_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_image_support.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_pixmap.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_pixmap.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/gdisp_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/gdisp_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mcufont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mcufont.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mcufont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mcufont.mk -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_bwfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_bwfont.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_bwfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_bwfont.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_config.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_encoding.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_encoding.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_font.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_font.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_justify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_justify.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_justify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_justify.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_kerning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_kerning.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_kerning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_kerning.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_rlefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_rlefont.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_rlefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_rlefont.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_scaledfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_scaledfont.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_scaledfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_scaledfont.h -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_wordwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_wordwrap.c -------------------------------------------------------------------------------- /components/ugfx/src/gdisp/mcufont/mf_wordwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdisp/mcufont/mf_wordwrap.h -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver.c -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver.h -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver.mk -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gdriver/gdriver_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gdriver/gdriver_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent.c -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent.h -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent.mk -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gevent/gevent_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gevent/gevent_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile.mk -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fatfs_diskio_chibios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fatfs_diskio_chibios.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fatfs_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fatfs_wrapper.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fatfs_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fatfs_wrapper.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_chibios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_chibios.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_fatfs.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_mem.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_native.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_petitfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_petitfs.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_ram.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_rom.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_fs_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_fs_strings.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_petitfs_diskio_chibios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_petitfs_diskio_chibios.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_petitfs_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_petitfs_wrapper.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_petitfs_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_petitfs_wrapper.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_printg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_printg.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_scang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_scang.c -------------------------------------------------------------------------------- /components/ugfx/src/gfile/gfile_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfile/gfile_stdio.c -------------------------------------------------------------------------------- /components/ugfx/src/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfx.c -------------------------------------------------------------------------------- /components/ugfx/src/gfx_compilers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfx_compilers.h -------------------------------------------------------------------------------- /components/ugfx/src/gfx_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gfx_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput.mk -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_dial.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_dial.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_driver_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_driver_dial.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_driver_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_driver_keyboard.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_driver_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_driver_mouse.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_driver_toggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_driver_toggle.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_keyboard.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_keyboard.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_keyboard_microcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_keyboard_microcode.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_keyboard_microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_keyboard_microcode.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_mouse.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_mouse.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_options.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_toggle.c -------------------------------------------------------------------------------- /components/ugfx/src/ginput/ginput_toggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/ginput/ginput_toggle.h -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc.c -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc.h -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc.mk -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_arrayops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_arrayops.c -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_hittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_hittest.c -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_matrix2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_matrix2d.c -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gmisc/gmisc_trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gmisc/gmisc_trig.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos.mk -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_arduino.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_arduino.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_chibios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_chibios.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_chibios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_chibios.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_cmsis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_cmsis.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_cmsis.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_cmsis2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_cmsis2.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_cmsis2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_cmsis2.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_ecos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_ecos.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_ecos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_ecos.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_freertos.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_freertos.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_keil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_keil.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_linux.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_linux.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_nios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_nios.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_nios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_nios.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_osx.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_osx.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_qt.cpp -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_qt.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_raw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_raw32.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_raw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_raw32.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_rawrtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_rawrtos.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_rawrtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_rawrtos.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_rtx5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_rtx5.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_win32.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_win32.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_heap.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_heap.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_threads.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_threads.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_threads_cortexm01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_threads_cortexm01.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_threads_cortexm347.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_threads_cortexm347.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_x_threads_cortexm47fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_x_threads_cortexm47fp.h -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_zephyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_zephyr.c -------------------------------------------------------------------------------- /components/ugfx/src/gos/gos_zephyr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gos/gos_zephyr.h -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue.c -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue.h -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue.mk -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gqueue/gqueue_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gqueue/gqueue_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer.c -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer.h -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer.mk -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gtimer/gtimer_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtimer/gtimer_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans.c -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans.h -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans.mk -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gtrans/gtrans_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gtrans/gtrans_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin.mk -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_button.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_button.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_checkbox.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_checkbox.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_class.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_console.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_console.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_container.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_container.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_frame.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_frame.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_gl3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_gl3d.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_gl3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_gl3d.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_graph.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_graph.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_image.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_image.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_keyboard.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_keyboard.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_keyboard_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_keyboard_layout.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_keyboard_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_keyboard_layout.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_label.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_label.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_list.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_list.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_mk.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_options.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_progressbar.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_progressbar.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_radio.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_radio.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_rules.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_slider.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_slider.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_tabset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_tabset.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_tabset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_tabset.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_textedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_textedit.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_textedit.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_widget.c -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_widget.h -------------------------------------------------------------------------------- /components/ugfx/src/gwin/gwin_wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/components/ugfx/src/gwin/gwin_wm.c -------------------------------------------------------------------------------- /docs/acode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/docs/acode.jpg -------------------------------------------------------------------------------- /docs/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/docs/board.png -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/inc/board/pn532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/board/pn532.h -------------------------------------------------------------------------------- /main/inc/board/st7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/board/st7735.h -------------------------------------------------------------------------------- /main/inc/board/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/board/st7789.h -------------------------------------------------------------------------------- /main/inc/chip/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/chip/i2s.h -------------------------------------------------------------------------------- /main/inc/chip/nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/chip/nvs.h -------------------------------------------------------------------------------- /main/inc/chip/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/chip/spi.h -------------------------------------------------------------------------------- /main/inc/chip/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/chip/uart.h -------------------------------------------------------------------------------- /main/inc/chip/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/chip/wifi.h -------------------------------------------------------------------------------- /main/inc/core/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/core/app.h -------------------------------------------------------------------------------- /main/inc/core/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/core/os.h -------------------------------------------------------------------------------- /main/inc/user/audio_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/audio_player.h -------------------------------------------------------------------------------- /main/inc/user/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/gui.h -------------------------------------------------------------------------------- /main/inc/user/http_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/http_app.h -------------------------------------------------------------------------------- /main/inc/user/http_app_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/http_app_ota.h -------------------------------------------------------------------------------- /main/inc/user/http_app_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/http_app_token.h -------------------------------------------------------------------------------- /main/inc/user/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/key.h -------------------------------------------------------------------------------- /main/inc/user/key_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/key_handle.h -------------------------------------------------------------------------------- /main/inc/user/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/led.h -------------------------------------------------------------------------------- /main/inc/user/nfc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/nfc_app.h -------------------------------------------------------------------------------- /main/inc/user/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/inc/user/ntp.h -------------------------------------------------------------------------------- /main/res/ani/ani0_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani0_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani0_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani0_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani1_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani1_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani1_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani1_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani2_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani2_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani2_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani2_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani3_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani3_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani3_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani3_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani4_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani4_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani4_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani4_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani5_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani5_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani5_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani5_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani6_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani6_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani6_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani6_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani7_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani7_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani7_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani7_240x135.gif -------------------------------------------------------------------------------- /main/res/ani/ani8_160x80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani8_160x80.gif -------------------------------------------------------------------------------- /main/res/ani/ani8_240x135.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/ani/ani8_240x135.gif -------------------------------------------------------------------------------- /main/res/cert/cert0.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/cert/cert0.pem -------------------------------------------------------------------------------- /main/res/snd/snd0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd0.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd1.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd2.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd3.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd4.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd5.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd6.mp3 -------------------------------------------------------------------------------- /main/res/snd/snd7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/res/snd/snd7.mp3 -------------------------------------------------------------------------------- /main/src/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/app_main.c -------------------------------------------------------------------------------- /main/src/board/pn532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/board/pn532.c -------------------------------------------------------------------------------- /main/src/board/st7735.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/board/st7735.c -------------------------------------------------------------------------------- /main/src/board/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/board/st7789.c -------------------------------------------------------------------------------- /main/src/chip/i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/chip/i2s.c -------------------------------------------------------------------------------- /main/src/chip/nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/chip/nvs.c -------------------------------------------------------------------------------- /main/src/chip/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/chip/spi.c -------------------------------------------------------------------------------- /main/src/chip/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/chip/uart.c -------------------------------------------------------------------------------- /main/src/chip/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/chip/wifi.c -------------------------------------------------------------------------------- /main/src/core/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/core/app.c -------------------------------------------------------------------------------- /main/src/core/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/core/os.c -------------------------------------------------------------------------------- /main/src/user/audio_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/audio_player.c -------------------------------------------------------------------------------- /main/src/user/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/gui.c -------------------------------------------------------------------------------- /main/src/user/http_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/http_app.c -------------------------------------------------------------------------------- /main/src/user/http_app_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/http_app_ota.c -------------------------------------------------------------------------------- /main/src/user/http_app_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/http_app_token.c -------------------------------------------------------------------------------- /main/src/user/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/key.c -------------------------------------------------------------------------------- /main/src/user/key_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/key_handle.c -------------------------------------------------------------------------------- /main/src/user/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/led.c -------------------------------------------------------------------------------- /main/src/user/nfc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/nfc_app.c -------------------------------------------------------------------------------- /main/src/user/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/main/src/user/ntp.c -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/nfc_attendance_system_esp32/HEAD/sdkconfig.defaults --------------------------------------------------------------------------------