├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── firmware ├── DarkNet-EclipseStyle.xml ├── DevBoard │ └── darknet-7 │ │ ├── .cproject │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.cdt.codan.core.prefs │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f411xe.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ └── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f4xx_hal.h │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ ├── stm32f4xx_hal_def.h │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ └── stm32f4xx_ll_usb.h │ │ │ └── Src │ │ │ ├── stm32f4xx_hal.c │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ └── stm32f4xx_ll_usb.c │ │ ├── Inc │ │ ├── dma.h │ │ ├── fatfs.h │ │ ├── ffconf.h │ │ ├── gpio.h │ │ ├── i2c.h │ │ ├── jdata_conf.h │ │ ├── jmorecfg.h │ │ ├── main.h │ │ ├── spi.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── tim.h │ │ ├── usart.h │ │ ├── usb_device.h │ │ ├── usbd_cdc_if.h │ │ ├── usbd_conf.h │ │ ├── usbd_desc.h │ │ └── user_diskio.h │ │ ├── Middlewares │ │ ├── ST │ │ │ └── STM32_USB_Device_Library │ │ │ │ ├── Class │ │ │ │ └── CDC │ │ │ │ │ ├── Inc │ │ │ │ │ └── usbd_cdc.h │ │ │ │ │ └── Src │ │ │ │ │ └── usbd_cdc.c │ │ │ │ └── Core │ │ │ │ ├── Inc │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_ctlreq.h │ │ │ │ ├── usbd_def.h │ │ │ │ └── usbd_ioreq.h │ │ │ │ └── Src │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_ctlreq.c │ │ │ │ └── usbd_ioreq.c │ │ └── Third_Party │ │ │ └── FatFs │ │ │ └── src │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ff_gen_drv.c │ │ │ ├── ff_gen_drv.h │ │ │ ├── ffconf_template.h │ │ │ ├── integer.h │ │ │ └── option │ │ │ ├── ccsbcs.c │ │ │ └── syscall.c │ │ ├── STM32F411RETx_FLASH.ld │ │ ├── Src │ │ ├── darknet │ │ │ ├── 3dParty │ │ │ │ └── flatbuffer │ │ │ │ │ ├── README.md │ │ │ │ │ ├── flatbuffers │ │ │ │ │ ├── base.h │ │ │ │ │ ├── code_generators.h │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ ├── flatc.h │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ ├── grpc.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── idl.h │ │ │ │ │ ├── minireflect.h │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ └── util.h │ │ │ │ │ ├── idl_gen_text.cpp │ │ │ │ │ └── idl_parser.cpp │ │ │ ├── KeyStore.cpp │ │ │ ├── KeyStore.h │ │ │ ├── art │ │ │ │ ├── TITS.png │ │ │ │ ├── TITS.xcf │ │ │ │ ├── dc_zia_128-sized.png │ │ │ │ ├── dc_zia_96-sized.cpp │ │ │ │ ├── dc_zia_96-sized.xcf │ │ │ │ ├── images.h │ │ │ │ ├── stickers.cpp │ │ │ │ ├── stickers.png │ │ │ │ ├── test.cpp │ │ │ │ └── tits.cpp │ │ │ ├── darknet7.cpp │ │ │ ├── darknet7.h │ │ │ ├── hardware_config.cpp │ │ │ ├── init.cpp │ │ │ ├── init.h │ │ │ ├── mcu_to_mcu.cpp │ │ │ ├── mcu_to_mcu.h │ │ │ ├── menus │ │ │ │ ├── 3d │ │ │ │ │ ├── renderer.cpp │ │ │ │ │ ├── renderer.h │ │ │ │ │ ├── vec_math.cpp │ │ │ │ │ └── vec_math.h │ │ │ │ ├── AddressState.cpp │ │ │ │ ├── AddressState.h │ │ │ │ ├── GameOfLife.cpp │ │ │ │ ├── GameOfLife.h │ │ │ │ ├── SendMsgState.cpp │ │ │ │ ├── SendMsgState.h │ │ │ │ ├── badge_info_state.cpp │ │ │ │ ├── badge_info_state.h │ │ │ │ ├── communications_settings.cpp │ │ │ │ ├── communications_settings.h │ │ │ │ ├── darknet7_base_state.h │ │ │ │ ├── gui_list_processor.cpp │ │ │ │ ├── gui_list_processor.h │ │ │ │ ├── health.cpp │ │ │ │ ├── health.h │ │ │ │ ├── mcu_info.cpp │ │ │ │ ├── mcu_info.h │ │ │ │ ├── menu3d.cpp │ │ │ │ ├── menu3d.h │ │ │ │ ├── menu_state.cpp │ │ │ │ ├── menu_state.h │ │ │ │ ├── pairing_state.cpp │ │ │ │ ├── pairing_state.h │ │ │ │ ├── sao_menu.cpp │ │ │ │ ├── sao_menu.h │ │ │ │ ├── scan.cpp │ │ │ │ ├── scan.h │ │ │ │ ├── setting_state.cpp │ │ │ │ ├── setting_state.h │ │ │ │ ├── tamagotchi.cpp │ │ │ │ ├── tamagotchi.h │ │ │ │ ├── test_state.cpp │ │ │ │ └── test_state.h │ │ │ ├── messaging │ │ │ │ ├── common_generated.h │ │ │ │ ├── esp_to_stm_generated.h │ │ │ │ └── stm_to_esp_generated.h │ │ │ ├── virtual_key_board.cpp │ │ │ └── virtual_key_board.h │ │ ├── dma.c │ │ ├── fatfs.c │ │ ├── gpio.c │ │ ├── i2c.c │ │ ├── jdata_conf.c │ │ ├── main.c │ │ ├── sd_spi │ │ │ ├── fat_sd_spi.c │ │ │ └── fat_sd_spi.h │ │ ├── spi.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── tim.c │ │ ├── usart.c │ │ ├── usb_device.c │ │ ├── usbd_cdc_if.c │ │ ├── usbd_conf.c │ │ ├── usbd_desc.c │ │ └── user_diskio.c │ │ ├── chipinfo.txt │ │ ├── darknet-7 Debug.cfg │ │ ├── darknet-7.ioc │ │ ├── darknet-7.xml │ │ └── startup │ │ └── startup_stm32f411xe.s ├── NucleoF411RE │ └── DC26 │ │ ├── .cproject │ │ ├── .gitignore │ │ ├── .mxproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── DC26 Debug.cfg │ │ ├── DC26.ioc │ │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F4xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f411xe.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ └── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f4xx_hal.h │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ ├── stm32f4xx_hal_def.h │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ └── stm32f4xx_ll_usb.h │ │ │ └── Src │ │ │ ├── stm32f4xx_hal.c │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ └── stm32f4xx_ll_usb.c │ │ ├── Inc │ │ ├── dma.h │ │ ├── gpio.h │ │ ├── i2c.h │ │ ├── jconfig.h │ │ ├── jdata_conf.h │ │ ├── jmorecfg.h │ │ ├── libjpeg.h │ │ ├── main.h │ │ ├── spi.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── usart.h │ │ ├── usb_device.h │ │ ├── usbd_cdc_if.h │ │ ├── usbd_conf.h │ │ └── usbd_desc.h │ │ ├── Middlewares │ │ ├── ST │ │ │ └── STM32_USB_Device_Library │ │ │ │ ├── Class │ │ │ │ └── CDC │ │ │ │ │ ├── Inc │ │ │ │ │ └── usbd_cdc.h │ │ │ │ │ └── Src │ │ │ │ │ └── usbd_cdc.c │ │ │ │ └── Core │ │ │ │ ├── Inc │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_ctlreq.h │ │ │ │ ├── usbd_def.h │ │ │ │ └── usbd_ioreq.h │ │ │ │ └── Src │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_ctlreq.c │ │ │ │ └── usbd_ioreq.c │ │ └── Third_Party │ │ │ └── LibJPEG │ │ │ ├── include │ │ │ ├── jconfig_template.h │ │ │ ├── jdata_conf_template.h │ │ │ ├── jdct.h │ │ │ ├── jerror.h │ │ │ ├── jinclude.h │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg_template.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ └── jversion.h │ │ │ └── source │ │ │ ├── jaricom.c │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jcarith.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jcparam.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdarith.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ └── jutils.c │ │ ├── NUCLEO-F411RE.xml │ │ ├── STM32F411RETx_FLASH.ld │ │ ├── Src │ │ ├── darknet │ │ │ ├── DC26.cpp │ │ │ ├── DC26.h │ │ │ ├── hardware_config.cpp │ │ │ ├── init.cpp │ │ │ └── init.h │ │ ├── dma.c │ │ ├── gpio.c │ │ ├── i2c.c │ │ ├── libjpeg.c │ │ ├── main.c │ │ ├── spi.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── usart.c │ │ ├── usb_device.c │ │ ├── usbd_cdc_if.c │ │ ├── usbd_conf.c │ │ └── usbd_desc.c │ │ └── startup │ │ └── startup_stm32f411xe.s ├── README.md ├── bin │ └── firmware.hex ├── common │ ├── common.fbs │ ├── esp_to_stm.fbs │ ├── run_linux.sh │ ├── run_stm32.bat │ └── stm_to_esp.fbs ├── dc26-sao │ ├── eggplant │ │ ├── EEPROMAnything.h │ │ ├── eggplant.ino │ │ ├── eggplant_i2c_api.txt │ │ └── make-eeprom.pl │ └── mega_duo_i2c_test │ │ └── mega_duo_i2c_test.ino ├── esp-wroom-32 │ ├── dc26-esp │ │ ├── .cproject │ │ ├── .gitignore │ │ ├── .project │ │ ├── Makefile │ │ ├── README.md │ │ ├── components │ │ │ ├── fatfs_image │ │ │ │ ├── Makefile.projbuild │ │ │ │ ├── component.mk │ │ │ │ └── image │ │ │ │ │ ├── ESP32Explorer.html │ │ │ │ │ ├── ESP32Explorer.js │ │ │ │ │ ├── images │ │ │ │ │ ├── in.png │ │ │ │ │ ├── info.png │ │ │ │ │ └── out.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jQuery-File-Upload-9.18.0 │ │ │ │ │ └── js │ │ │ │ │ │ └── jquery.fileupload.js │ │ │ │ │ ├── jquery │ │ │ │ │ └── jquery-3.2.1.min.js │ │ │ │ │ ├── jqueryui │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ │ └── jstree │ │ │ │ │ ├── jstree.min.js │ │ │ │ │ └── themes │ │ │ │ │ ├── default-dark │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ │ └── default │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ ├── flatbuffer │ │ │ │ ├── README.md │ │ │ │ ├── component.mk │ │ │ │ ├── flatbuffers │ │ │ │ │ ├── base.h │ │ │ │ │ ├── code_generators.h │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ ├── flatc.h │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ ├── grpc.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── idl.h │ │ │ │ │ ├── minireflect.h │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ └── util.h │ │ │ │ ├── idl_gen_text.cpp │ │ │ │ └── idl_parser.cpp │ │ │ └── mkfatfs │ │ │ │ ├── Makefile.projbuild │ │ │ │ ├── component.mk │ │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── fatfs │ │ │ │ ├── FatPartition.cpp │ │ │ │ ├── FatPartition.h │ │ │ │ ├── ccsbcs.c │ │ │ │ ├── crc.cpp │ │ │ │ ├── fatfs.c │ │ │ │ └── fatfs.h │ │ │ │ ├── idf │ │ │ │ ├── modified │ │ │ │ │ ├── driver │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── driver │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ └── sdspi_host.h │ │ │ │ │ ├── fatfs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ff.c │ │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ │ └── vfs_fat.c │ │ │ │ │ ├── freertos │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── freertos │ │ │ │ │ │ │ ├── FreeRTOS.h │ │ │ │ │ │ │ ├── queue.h │ │ │ │ │ │ │ ├── semphr.c │ │ │ │ │ │ │ └── semphr.h │ │ │ │ │ ├── log │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── esp_log.h │ │ │ │ │ ├── newlib │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ ├── errno.c │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── idf_reent.c │ │ │ │ │ │ │ ├── idf_reent.h │ │ │ │ │ │ │ ├── lock.c │ │ │ │ │ │ │ └── lock.h │ │ │ │ │ ├── spi_flash │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── vfs │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── esp_vfs.h │ │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ │ └── idf_dirent.h │ │ │ │ │ │ └── vfs.c │ │ │ │ │ └── wear_levelling │ │ │ │ │ │ └── wear_levelling.cpp │ │ │ │ └── orig │ │ │ │ │ ├── driver │ │ │ │ │ └── include │ │ │ │ │ │ └── driver │ │ │ │ │ │ ├── sdmmc_host.h │ │ │ │ │ │ ├── sdmmc_types.h │ │ │ │ │ │ └── spi_master.h │ │ │ │ │ ├── esp32 │ │ │ │ │ └── include │ │ │ │ │ │ ├── esp_err.h │ │ │ │ │ │ └── rom │ │ │ │ │ │ └── crc.h │ │ │ │ │ ├── fatfs │ │ │ │ │ └── src │ │ │ │ │ │ ├── diskio.c │ │ │ │ │ │ ├── diskio.h │ │ │ │ │ │ ├── diskio_spiflash.c │ │ │ │ │ │ ├── diskio_spiflash.h │ │ │ │ │ │ ├── esp_vfs_fat.h │ │ │ │ │ │ ├── ff.h │ │ │ │ │ │ ├── ffconf.h │ │ │ │ │ │ └── option │ │ │ │ │ │ └── syscall.c │ │ │ │ │ ├── sdmmc │ │ │ │ │ └── include │ │ │ │ │ │ └── sdmmc_cmd.h │ │ │ │ │ ├── spi_flash │ │ │ │ │ └── include │ │ │ │ │ │ ├── esp_partition.h │ │ │ │ │ │ └── esp_spi_flash.h │ │ │ │ │ └── wear_levelling │ │ │ │ │ ├── WL_Ext_Perf.cpp │ │ │ │ │ ├── WL_Ext_Safe.cpp │ │ │ │ │ ├── WL_Flash.cpp │ │ │ │ │ ├── crc32.cpp │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── include │ │ │ │ │ └── wear_levelling.h │ │ │ │ │ └── private_include │ │ │ │ │ ├── Flash_Access.h │ │ │ │ │ ├── SPI_Flash.h │ │ │ │ │ ├── WL_Config.h │ │ │ │ │ ├── WL_Ext_Cfg.h │ │ │ │ │ ├── WL_Ext_Perf.h │ │ │ │ │ ├── WL_Ext_Safe.h │ │ │ │ │ ├── WL_Flash.h │ │ │ │ │ └── WL_State.h │ │ │ │ ├── main.cpp │ │ │ │ └── tclap │ │ │ │ ├── Arg.h │ │ │ │ ├── ArgException.h │ │ │ │ ├── ArgTraits.h │ │ │ │ ├── COPYING │ │ │ │ ├── CmdLine.h │ │ │ │ ├── CmdLineInterface.h │ │ │ │ ├── CmdLineOutput.h │ │ │ │ ├── Constraint.h │ │ │ │ ├── DocBookOutput.h │ │ │ │ ├── HelpVisitor.h │ │ │ │ ├── IgnoreRestVisitor.h │ │ │ │ ├── MultiArg.h │ │ │ │ ├── MultiSwitchArg.h │ │ │ │ ├── OptionalUnlabeledTracker.h │ │ │ │ ├── StandardTraits.h │ │ │ │ ├── StdOutput.h │ │ │ │ ├── SwitchArg.h │ │ │ │ ├── UnlabeledMultiArg.h │ │ │ │ ├── UnlabeledValueArg.h │ │ │ │ ├── ValueArg.h │ │ │ │ ├── ValuesConstraint.h │ │ │ │ ├── VersionVisitor.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── XorHandler.h │ │ │ │ └── ZshCompletionOutput.h │ │ ├── main │ │ │ ├── .gitignore │ │ │ ├── Kconfig.projbuild │ │ │ ├── command_handler.cpp │ │ │ ├── command_handler.h │ │ │ ├── common_generated.h │ │ │ ├── component.mk │ │ │ ├── dc26.cpp │ │ │ ├── dc26.h │ │ │ ├── dc26_ble │ │ │ │ ├── ESP WROOM 32-Interaction.png │ │ │ │ ├── ble.cpp │ │ │ │ ├── ble.h │ │ │ │ ├── ble_serial.cpp │ │ │ │ ├── ble_serial.h │ │ │ │ ├── component.mk │ │ │ │ ├── pairing.cpp │ │ │ │ ├── pairing.h │ │ │ │ ├── scanning.cpp │ │ │ │ ├── scanning.h │ │ │ │ ├── security.cpp │ │ │ │ ├── security.h │ │ │ │ └── services.h │ │ │ ├── display_handler.cpp │ │ │ ├── display_handler.h │ │ │ ├── esp_to_stm_generated.h │ │ │ ├── lib │ │ │ │ ├── FATFS_VFS.cpp │ │ │ │ ├── FATFS_VFS.h │ │ │ │ ├── File.cpp │ │ │ │ ├── File.h │ │ │ │ ├── FileSystem.cpp │ │ │ │ ├── FileSystem.h │ │ │ │ ├── FreeRTOS.cpp │ │ │ │ ├── FreeRTOS.h │ │ │ │ ├── GeneralUtils.cpp │ │ │ │ ├── GeneralUtils.h │ │ │ │ ├── Memory.cpp │ │ │ │ ├── Memory.h │ │ │ │ ├── System.cpp │ │ │ │ ├── System.h │ │ │ │ ├── Task.cpp │ │ │ │ ├── Task.h │ │ │ │ ├── ble │ │ │ │ │ ├── BLE2902.cpp │ │ │ │ │ ├── BLE2902.h │ │ │ │ │ ├── BLE2904.cpp │ │ │ │ │ ├── BLE2904.h │ │ │ │ │ ├── BLEAddress.cpp │ │ │ │ │ ├── BLEAddress.h │ │ │ │ │ ├── BLEAdvertisedDevice.cpp │ │ │ │ │ ├── BLEAdvertisedDevice.h │ │ │ │ │ ├── BLEAdvertising.cpp │ │ │ │ │ ├── BLEAdvertising.h │ │ │ │ │ ├── BLEBeacon.cpp │ │ │ │ │ ├── BLEBeacon.h │ │ │ │ │ ├── BLECharacteristic.cpp │ │ │ │ │ ├── BLECharacteristic.h │ │ │ │ │ ├── BLECharacteristicMap.cpp │ │ │ │ │ ├── BLEClient.cpp │ │ │ │ │ ├── BLEClient.h │ │ │ │ │ ├── BLEDescriptor.cpp │ │ │ │ │ ├── BLEDescriptor.h │ │ │ │ │ ├── BLEDescriptorMap.cpp │ │ │ │ │ ├── BLEDevice.cpp │ │ │ │ │ ├── BLEDevice.h │ │ │ │ │ ├── BLEExceptions.cpp │ │ │ │ │ ├── BLEExceptions.h │ │ │ │ │ ├── BLEHIDDevice.cpp │ │ │ │ │ ├── BLEHIDDevice.h │ │ │ │ │ ├── BLERemoteCharacteristic.cpp │ │ │ │ │ ├── BLERemoteCharacteristic.h │ │ │ │ │ ├── BLERemoteDescriptor.cpp │ │ │ │ │ ├── BLERemoteDescriptor.h │ │ │ │ │ ├── BLERemoteService.cpp │ │ │ │ │ ├── BLERemoteService.h │ │ │ │ │ ├── BLEScan.cpp │ │ │ │ │ ├── BLEScan.h │ │ │ │ │ ├── BLESecurity.cpp │ │ │ │ │ ├── BLESecurity.h │ │ │ │ │ ├── BLEServer.cpp │ │ │ │ │ ├── BLEServer.h │ │ │ │ │ ├── BLEService.cpp │ │ │ │ │ ├── BLEService.h │ │ │ │ │ ├── BLEServiceMap.cpp │ │ │ │ │ ├── BLEUUID.cpp │ │ │ │ │ ├── BLEUUID.h │ │ │ │ │ ├── BLEUtils.cpp │ │ │ │ │ ├── BLEUtils.h │ │ │ │ │ ├── BLEValue.cpp │ │ │ │ │ ├── BLEValue.h │ │ │ │ │ ├── HIDTypes.h │ │ │ │ │ └── component.mk │ │ │ │ ├── component.mk │ │ │ │ ├── fonts.cpp │ │ │ │ ├── fonts.h │ │ │ │ ├── gui.cpp │ │ │ │ ├── gui.h │ │ │ │ ├── i2c.cpp │ │ │ │ ├── i2c.hpp │ │ │ │ ├── json │ │ │ │ │ ├── JSON.cpp │ │ │ │ │ ├── JSON.h │ │ │ │ │ └── component.mk │ │ │ │ ├── net │ │ │ │ │ ├── GeneralUtils.cpp │ │ │ │ │ ├── GeneralUtils.h │ │ │ │ │ ├── HttpParser.cpp │ │ │ │ │ ├── HttpParser.h │ │ │ │ │ ├── HttpRequest.cpp │ │ │ │ │ ├── HttpRequest.h │ │ │ │ │ ├── HttpResponse.cpp │ │ │ │ │ ├── HttpResponse.h │ │ │ │ │ ├── HttpServer.cpp │ │ │ │ │ ├── HttpServer.h │ │ │ │ │ ├── SSLUtils.cpp │ │ │ │ │ ├── SSLUtils.h │ │ │ │ │ ├── SockServ.cpp │ │ │ │ │ ├── SockServ.h │ │ │ │ │ ├── Socket.cpp │ │ │ │ │ ├── Socket.h │ │ │ │ │ ├── WebSocket.cpp │ │ │ │ │ ├── WebSocket.h │ │ │ │ │ ├── WebSocketFileTransfer.cpp │ │ │ │ │ ├── WebSocketFileTransfer.h │ │ │ │ │ └── component.mk │ │ │ │ ├── ssd1306.cpp │ │ │ │ ├── ssd1306.h │ │ │ │ └── wifi │ │ │ │ │ ├── WiFi.cpp │ │ │ │ │ ├── WiFi.h │ │ │ │ │ ├── WiFiEventHandler.cpp │ │ │ │ │ ├── WiFiEventHandler.h │ │ │ │ │ └── component.mk │ │ │ ├── mcu_to_mcu.cpp │ │ │ ├── mcu_to_mcu.h │ │ │ ├── npc_interact.cpp │ │ │ ├── npc_interact.h │ │ │ └── stm_to_esp_generated.h │ │ ├── partitions.csv │ │ └── sdkconfig │ ├── docs │ │ └── esp-wroom-32_datasheet_en.pdf │ └── env.sh ├── main1.PNG ├── main2.PNG └── tools │ └── bin │ ├── linux │ ├── flatc │ └── flathash │ └── win │ └── flatc.exe ├── hardware ├── .gitignore ├── dc26-lbr │ ├── APA104.lbr │ ├── BU33SD5WG-TR.lbr │ ├── LDL112D33R │ │ ├── 3D │ │ │ ├── LDL112D33R.stl │ │ │ ├── LDL112D33R.stp │ │ │ └── LDL112D33R.wrl │ │ ├── Altium │ │ │ ├── LDL112D33R.c │ │ │ ├── LDL112D33R.p │ │ │ └── Readme.html │ │ ├── CADSTAR │ │ │ ├── LDL112D33R.csa │ │ │ └── SOIC127P600X175-8N.cpa │ │ ├── CR-5000 │ │ │ ├── LDL112D33R.cdf │ │ │ ├── LDL112D33R.laf │ │ │ ├── SOIC127P600X175-8N.ftf │ │ │ └── SOIC127P600X175-8N.pkf │ │ ├── CR-8000 │ │ │ ├── LDL112D33R.cdf │ │ │ ├── LDL112D33R.laf │ │ │ ├── SOIC127P600X175-8N.ftf │ │ │ └── SOIC127P600X175-8N.pkf │ │ ├── DesignSpark PCB │ │ │ └── LDL112D33R.dsl │ │ ├── DipTrace │ │ │ ├── LDL112D33R.c │ │ │ ├── LDL112D33R.p │ │ │ └── PIN.c │ │ ├── EAGLE │ │ │ ├── LDL112D33R.lbr │ │ │ └── Readme.html │ │ ├── EasyEDA │ │ │ ├── LDL112D33R.lbr │ │ │ └── Readme.html │ │ ├── How_To_Use_Models.pdf │ │ ├── KiCad │ │ │ └── LDL112D33R.dcm │ │ ├── LDL112D33R.epw │ │ ├── OrCAD_Allegro │ │ │ ├── LDL112D33R.edf │ │ │ └── Readme.html │ │ ├── PADS │ │ │ ├── LDL112D33R.c │ │ │ └── LDL112D33R.p │ │ ├── Pulsonix │ │ │ └── LDL112D33R.plx │ │ ├── TARGET 3001! │ │ │ └── LDL112D33R.cxf │ │ ├── Xpedition │ │ │ ├── LDL112D33R.1 │ │ │ ├── cell.hkp │ │ │ ├── padstacks.hkp │ │ │ └── pdb.hkp │ │ ├── eCADSTAR │ │ │ ├── LDL112D33R.parta │ │ │ ├── LDL112D33R.symba │ │ │ ├── SOIC127P600X175-8N.foota │ │ │ └── SOIC127P600X175-8N.packa │ │ ├── license.txt │ │ ├── version.bin │ │ └── xDX Designer │ │ │ └── LDL112D33R.1 │ ├── LIB_ABL-8.000MHZ-B2 │ │ ├── ABL-8.000MHZ-B2 │ │ │ ├── ABL-8.000MHZ-B2.epw │ │ │ ├── Altium │ │ │ │ ├── ABL-8.000MHZ-B2.p │ │ │ │ ├── ABL_8_000MHZ_B2.c │ │ │ │ └── Readme.html │ │ │ ├── CADSTAR │ │ │ │ ├── ABL-8.000MHZ-B2.csa │ │ │ │ └── HC │ │ │ │ │ └── 49US__AT49_PTH.cpa │ │ │ ├── CR-5000 │ │ │ │ ├── ABL-8.000MHZ-B2.cdf │ │ │ │ ├── ABL_8_000MHZ_B2.laf │ │ │ │ ├── HC_49US_(AT49)PTH.ftf │ │ │ │ └── HC_49US_(AT49)PTH.pkf │ │ │ ├── CR-8000 │ │ │ │ ├── ABL-8.000MHZ-B2.cdf │ │ │ │ ├── ABL_8_000MHZ_B2.laf │ │ │ │ ├── HC_49US_(AT49)PTH.ftf │ │ │ │ └── HC_49US_(AT49)PTH.pkf │ │ │ ├── DesignSpark PCB │ │ │ │ └── ABL-8.000MHZ-B2.dsl │ │ │ ├── DipTrace │ │ │ │ ├── ABL-8.000MHZ-B2.p │ │ │ │ ├── ABL_8_000MHZ_B2.c │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── ABL-8.000MHZ-B2.lbr │ │ │ │ ├── Readme.html │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── ABL-8.000MHZ-B2.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── ABL-8.000MHZ-B2.dcm │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── ABL-8.000MHZ-B2.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── ABL-8.000MHZ-B2.p │ │ │ │ └── ABL_8_000MHZ_B2.c │ │ │ ├── Pulsonix │ │ │ │ └── ABL-8.000MHZ-B2.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── ABL-8.000MHZ-B2.cxf │ │ │ ├── Xpedition │ │ │ │ ├── ABL_8_000MHZ_B2.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── ABL_8_000MHZ_B2.1 │ │ └── license.txt │ ├── LIB_BLM18TG221TN1D │ │ ├── BLM18TG221TN1D │ │ │ ├── 3D │ │ │ │ ├── BLM18TG221TN1D.stl │ │ │ │ ├── BLM18TG221TN1D.stp │ │ │ │ └── BLM18TG221TN1D.wrl │ │ │ ├── Altium │ │ │ │ ├── BLM18TG221TN1D.c │ │ │ │ ├── BLM18TG221TN1D.p │ │ │ │ └── Readme.html │ │ │ ├── BLM18TG221TN1D.epw │ │ │ ├── CADSTAR │ │ │ │ ├── BEADC1608X75N.cpa │ │ │ │ └── BLM18TG221TN1D.csa │ │ │ ├── CR-5000 │ │ │ │ ├── BEADC1608X75N.ftf │ │ │ │ ├── BEADC1608X75N.pkf │ │ │ │ ├── BLM18TG221TN1D.cdf │ │ │ │ └── BLM18TG221TN1D.laf │ │ │ ├── CR-8000 │ │ │ │ ├── BEADC1608X75N.ftf │ │ │ │ ├── BEADC1608X75N.pkf │ │ │ │ ├── BLM18TG221TN1D.cdf │ │ │ │ └── BLM18TG221TN1D.laf │ │ │ ├── DesignSpark PCB │ │ │ │ └── BLM18TG221TN1D.dsl │ │ │ ├── DipTrace │ │ │ │ ├── BLM18TG221TN1D.c │ │ │ │ ├── BLM18TG221TN1D.p │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── BLM18TG221TN1D.lbr │ │ │ │ ├── Readme.html │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── BLM18TG221TN1D.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── BLM18TG221TN1D.dcm │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── BLM18TG221TN1D.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── BLM18TG221TN1D.c │ │ │ │ └── BLM18TG221TN1D.p │ │ │ ├── Pulsonix │ │ │ │ └── BLM18TG221TN1D.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── BLM18TG221TN1D.cxf │ │ │ ├── Xpedition │ │ │ │ ├── BLM18TG221TN1D.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── BLM18TG221TN1D.1 │ │ └── license.txt │ ├── LIB_CMDZ3L3_TR │ │ ├── CMDZ3L3_TR │ │ │ ├── Altium │ │ │ │ ├── CMDZ3L3_TR.c │ │ │ │ ├── CMDZ3L3_TR.p │ │ │ │ └── Readme.html │ │ │ ├── CADSTAR │ │ │ │ ├── CMDZ3L3_TR.csa │ │ │ │ └── SOD2512X110N.cpa │ │ │ ├── CMDZ3L3_TR.epw │ │ │ ├── CR-5000 │ │ │ │ ├── CMDZ3L3_TR.cdf │ │ │ │ ├── CMDZ3L3_TR.laf │ │ │ │ ├── SOD2512X110N.ftf │ │ │ │ └── SOD2512X110N.pkf │ │ │ ├── CR-8000 │ │ │ │ ├── CMDZ3L3_TR.cdf │ │ │ │ ├── CMDZ3L3_TR.laf │ │ │ │ ├── SOD2512X110N.ftf │ │ │ │ └── SOD2512X110N.pkf │ │ │ ├── DesignSpark PCB │ │ │ │ └── CMDZ3L3_TR.dsl │ │ │ ├── DipTrace │ │ │ │ ├── CMDZ3L3_TR.c │ │ │ │ ├── CMDZ3L3_TR.p │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── CMDZ3L3_TR.lbr │ │ │ │ ├── Readme.html │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── CMDZ3L3_TR.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── CMDZ3L3_TR.dcm │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── CMDZ3L3_TR.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── CMDZ3L3_TR.c │ │ │ │ └── CMDZ3L3_TR.p │ │ │ ├── Pulsonix │ │ │ │ └── CMDZ3L3_TR.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── CMDZ3L3_TR.cxf │ │ │ ├── Xpedition │ │ │ │ ├── CMDZ3L3_TR.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── CMDZ3L3_TR.1 │ │ └── license.txt │ ├── LIB_LD39050PU33R │ │ ├── LD39050PU33R │ │ │ ├── 3D │ │ │ │ ├── LD39050PU33R.stl │ │ │ │ ├── LD39050PU33R.stp │ │ │ │ └── LD39050PU33R.wrl │ │ │ ├── Altium │ │ │ │ ├── LD39050PU33R.c │ │ │ │ ├── LD39050PU33R.p │ │ │ │ └── Readme.html │ │ │ ├── CADSTAR │ │ │ │ ├── LD39050PU33R.csa │ │ │ │ └── SON95P300X300X100-7N.cpa │ │ │ ├── CR-5000 │ │ │ │ ├── LD39050PU33R.cdf │ │ │ │ ├── LD39050PU33R.laf │ │ │ │ ├── SON95P300X300X100-7N.ftf │ │ │ │ └── SON95P300X300X100-7N.pkf │ │ │ ├── CR-8000 │ │ │ │ ├── LD39050PU33R.cdf │ │ │ │ ├── LD39050PU33R.laf │ │ │ │ ├── SON95P300X300X100-7N.ftf │ │ │ │ └── SON95P300X300X100-7N.pkf │ │ │ ├── DesignSpark PCB │ │ │ │ └── LD39050PU33R.dsl │ │ │ ├── DipTrace │ │ │ │ ├── LD39050PU33R.c │ │ │ │ ├── LD39050PU33R.p │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── LD39050PU33R.lbr │ │ │ │ ├── Readme.html │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── LD39050PU33R.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── LD39050PU33R.dcm │ │ │ ├── LD39050PU33R.epw │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── LD39050PU33R.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── LD39050PU33R.c │ │ │ │ └── LD39050PU33R.p │ │ │ ├── Pulsonix │ │ │ │ └── LD39050PU33R.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── LD39050PU33R.cxf │ │ │ ├── Xpedition │ │ │ │ ├── LD39050PU33R.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── LD39050PU33R.1 │ │ └── license.txt │ ├── LIB_LD39100PU33RY │ │ ├── LD39100PU33RY │ │ │ ├── 3D │ │ │ │ ├── LD39100PU33RY.stl │ │ │ │ ├── LD39100PU33RY.stp │ │ │ │ └── LD39100PU33RY.wrl │ │ │ ├── Altium │ │ │ │ ├── LD39100PU33RY.c │ │ │ │ ├── LD39100PU33RY.p │ │ │ │ └── Readme.html │ │ │ ├── CADSTAR │ │ │ │ ├── LD39100PU33RY.csa │ │ │ │ └── SON95P300X300X90-7N.cpa │ │ │ ├── CR-5000 │ │ │ │ ├── LD39100PU33RY.cdf │ │ │ │ ├── LD39100PU33RY.laf │ │ │ │ ├── SON95P300X300X90-7N.ftf │ │ │ │ └── SON95P300X300X90-7N.pkf │ │ │ ├── CR-8000 │ │ │ │ ├── LD39100PU33RY.cdf │ │ │ │ ├── LD39100PU33RY.laf │ │ │ │ ├── SON95P300X300X90-7N.ftf │ │ │ │ └── SON95P300X300X90-7N.pkf │ │ │ ├── DesignSpark PCB │ │ │ │ └── LD39100PU33RY.dsl │ │ │ ├── DipTrace │ │ │ │ ├── LD39100PU33RY.c │ │ │ │ ├── LD39100PU33RY.p │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── LD39100PU33RY.lbr │ │ │ │ ├── Readme.html │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── LD39100PU33RY.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── LD39100PU33RY.dcm │ │ │ ├── LD39100PU33RY.epw │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── LD39100PU33RY.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── LD39100PU33RY.c │ │ │ │ └── LD39100PU33RY.p │ │ │ ├── Pulsonix │ │ │ │ └── LD39100PU33RY.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── LD39100PU33RY.cxf │ │ │ ├── Xpedition │ │ │ │ ├── LD39100PU33RY.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── LD39100PU33RY.1 │ │ └── license.txt │ ├── LIB_LM4040D50IDBZR │ │ ├── A_WARNING_USER_CONTRIBUTED_PART.txt │ │ ├── LM4040D50IDBZR │ │ │ ├── Altium │ │ │ │ ├── LM4040D50IDBZR.c │ │ │ │ ├── LM4040D50IDBZR.p │ │ │ │ └── Readme.html │ │ │ ├── CADSTAR │ │ │ │ ├── LM4040D50IDBZR.csa │ │ │ │ └── SOT95P237X112-3N.cpa │ │ │ ├── CR-5000 │ │ │ │ ├── LM4040D50IDBZR.cdf │ │ │ │ ├── LM4040D50IDBZR.laf │ │ │ │ ├── SOT95P237X112-3N.ftf │ │ │ │ └── SOT95P237X112-3N.pkf │ │ │ ├── CR-8000 │ │ │ │ ├── LM4040D50IDBZR.cdf │ │ │ │ ├── LM4040D50IDBZR.laf │ │ │ │ ├── SOT95P237X112-3N.ftf │ │ │ │ └── SOT95P237X112-3N.pkf │ │ │ ├── CircuitStudio │ │ │ │ └── LM4040D50IDBZR.lbr │ │ │ ├── DesignSpark PCB │ │ │ │ └── LM4040D50IDBZR.dsl │ │ │ ├── DipTrace │ │ │ │ ├── LM4040D50IDBZR.c │ │ │ │ ├── LM4040D50IDBZR.p │ │ │ │ └── PIN.c │ │ │ ├── EAGLE │ │ │ │ ├── LM4040D50IDBZR.lbr │ │ │ │ └── Readme.html │ │ │ ├── EasyEDA │ │ │ │ ├── LM4040D50IDBZR.lbr │ │ │ │ └── Readme.html │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── LM4040D50IDBZR.dcm │ │ │ ├── LM4040D50IDBZR.epw │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── LM4040D50IDBZR.edf │ │ │ │ └── Readme.html │ │ │ ├── PADS │ │ │ │ ├── LM4040D50IDBZR.c │ │ │ │ └── LM4040D50IDBZR.p │ │ │ ├── Proteus │ │ │ │ └── LM4040D50IDBZR.asc │ │ │ ├── Pulsonix │ │ │ │ └── LM4040D50IDBZR.plx │ │ │ ├── TARGET 3001! │ │ │ │ └── LM4040D50IDBZR.cxf │ │ │ ├── Xpedition │ │ │ │ ├── LM4040D50IDBZR.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ ├── eCADSTAR │ │ │ │ ├── LM4040D50IDBZR.parta │ │ │ │ ├── LM4040D50IDBZR.symba │ │ │ │ ├── SOT95P237X112-3N.foota │ │ │ │ └── SOT95P237X112-3N.packa │ │ │ └── xDX Designer │ │ │ │ └── LM4040D50IDBZR.1 │ │ ├── license.txt │ │ └── version.bin │ ├── LIB_STM32F411RET6 │ │ ├── STM32F411RET6 │ │ │ ├── 3D │ │ │ │ ├── STM32F411RET6.stl │ │ │ │ ├── STM32F411RET6.stp │ │ │ │ └── STM32F411RET6.wrl │ │ │ ├── Altium │ │ │ │ ├── Readme.html │ │ │ │ ├── STM32F411RET6.c │ │ │ │ └── STM32F411RET6.p │ │ │ ├── CADSTAR │ │ │ │ ├── QFP50P1200X1200X160-64N.cpa │ │ │ │ └── STM32F411RET6.csa │ │ │ ├── CR-5000 │ │ │ │ ├── QFP50P1200X1200X160-64N.ftf │ │ │ │ ├── QFP50P1200X1200X160-64N.pkf │ │ │ │ ├── STM32F411RET6.cdf │ │ │ │ └── STM32F411RET6.laf │ │ │ ├── CR-8000 │ │ │ │ ├── QFP50P1200X1200X160-64N.ftf │ │ │ │ ├── QFP50P1200X1200X160-64N.pkf │ │ │ │ ├── STM32F411RET6.cdf │ │ │ │ └── STM32F411RET6.laf │ │ │ ├── DesignSpark PCB │ │ │ │ └── STM32F411RET6.dsl │ │ │ ├── DipTrace │ │ │ │ ├── PIN.c │ │ │ │ ├── STM32F411RET6.c │ │ │ │ └── STM32F411RET6.p │ │ │ ├── EAGLE │ │ │ │ ├── Readme.html │ │ │ │ ├── STM32F411RET6.lbr │ │ │ │ └── ULP │ │ │ │ │ ├── ULP_README.txt │ │ │ │ │ ├── samacsys.png │ │ │ │ │ └── samacsys.ulp │ │ │ ├── EasyEDA │ │ │ │ ├── Readme.html │ │ │ │ └── STM32F411RET6.lbr │ │ │ ├── How_To_Use_Models.pdf │ │ │ ├── KiCad │ │ │ │ └── STM32F411RET6.dcm │ │ │ ├── OrCAD_Allegro │ │ │ │ ├── Readme.html │ │ │ │ └── STM32F411RET6.edf │ │ │ ├── PADS │ │ │ │ ├── STM32F411RET6.c │ │ │ │ └── STM32F411RET6.p │ │ │ ├── Pulsonix │ │ │ │ └── STM32F411RET6.plx │ │ │ ├── STM32F411RET6.epw │ │ │ ├── TARGET 3001! │ │ │ │ └── STM32F411RET6.cxf │ │ │ ├── Xpedition │ │ │ │ ├── STM32F411RET6.1 │ │ │ │ ├── cell.hkp │ │ │ │ ├── padstacks.hkp │ │ │ │ └── pdb.hkp │ │ │ └── xDX Designer │ │ │ │ └── STM32F411RET6.1 │ │ └── license.txt │ ├── TRF7960ARHBT │ │ ├── Eagle.sch │ │ ├── Eagle.xml │ │ ├── Eagle.xml_Library.scr │ │ └── readme.txt │ ├── dc-26.lbr │ ├── esp32-1.lbr │ └── esp32.lbr ├── dc26-sao │ └── eggplant │ │ ├── eggplant-BOM.xls │ │ ├── eggplant.brd │ │ └── eggplant.sch ├── devboard │ ├── TODO.txt │ └── dc26-dev-board │ │ ├── DESCRIPTION │ │ ├── README.md │ │ ├── dc26-dev-board-apa102c-3.brd │ │ ├── dc26-dev-board-apa102c-3.sch │ │ ├── dc26-dev-board-apa102c.brd │ │ ├── dc26-dev-board-apa102c.sch │ │ ├── dc26-dev-board.sch │ │ ├── dc26-dev-boardv3.sch │ │ ├── dc26.brd │ │ ├── dc26.sch │ │ └── eagle.epf └── docs │ ├── 0ZCA.pdf │ ├── 463766934042091920zcj.pdf │ ├── ABL-8.000MHZ-B2.pdf │ ├── ALPS-SSAJ120100-datasheet.pdf │ ├── APA-106-ETC.pdf │ ├── APA102.pdf │ ├── APA104 Datasheet.pdf │ ├── ESP-WROOM-S2_Datasheet__EN.pdf │ ├── LD39050-PowerRegulator.pdf │ ├── LD39100-PowerRegulator.pdf │ ├── LDL112D33R.pdf │ ├── LEDs-2.PNG │ ├── LEDs.PNG │ ├── MCP73831T.pdf │ ├── MJTP_6MM-25494.pdf │ ├── NoteOnCrystalOscillators.pdf │ ├── S2303 THRU S2336 N0291 REV.A.pdf │ ├── SSSS8 Series - Basic information.html │ ├── SSSS8 Series - Basic information_files │ ├── 2017_inq_eng_off.jpg │ ├── 2017_print_eng_off.jpg │ ├── 2017_relation_eng_off.jpg │ ├── Reel38_W.GIF │ ├── SLIDE_H.GIF │ ├── SSSS811101.jpg │ ├── SSSS8_D_31.GIF │ ├── SSSS8_D_32.GIF │ ├── SSSS8_D_33.GIF │ ├── alps_logo_eng.gif │ ├── analytics.js.download │ ├── btn_pagetop.png │ ├── close_eng_off.jpg │ ├── common.js.download │ ├── footer_eng.js.download │ ├── icon_download.jpg │ ├── jquery-latest.min.js.download │ ├── original.css │ ├── personal_style.css │ ├── product_analytics.js.download │ ├── style_flat.css │ └── style_flat_print.css │ ├── S_110_LTST-C190KGKT.pdf │ ├── WS2811.pdf │ ├── XBP15SRV05W.pdf │ ├── buxxsd5wg-e.pdf │ ├── cmdz5l1-36l.pdf │ ├── ds11303.pdf │ ├── en.CD00259245.pdf │ ├── en.DM00105879.pdf │ ├── en.DM00115249.pdf │ ├── en.DM00115714-getting-started.pdf │ ├── en.DM00119316.pdf │ ├── en.DM00235987.pdf │ ├── en.DM00236305.pdf │ ├── en.DM00327191.pdf │ ├── en.DM00354244.pdf │ ├── esp-wroom-32_datasheet_en.pdf │ ├── esp32_hardware_design_guidelines_en.pdf │ ├── esp32_technical_reference_manual_en.pdf │ ├── ferrite-bead.pdf │ ├── led-symbols.jpg │ ├── superled-blog.pdf │ ├── trf7960a.pdf │ └── ws2811mpdf.pdf └── software ├── BadgeGen ├── .cproject ├── .gitignore ├── .project ├── Debug │ ├── BadgeGen2 │ ├── makefile │ ├── objects.mk │ └── sources.mk ├── badge-info.sql ├── commands.txt ├── count_badges.txt ├── dupstohex.sh ├── openocd-help.txt └── src │ ├── BadgeGen2.cpp │ ├── micro-ecc │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── asm_arm.inc │ ├── asm_arm_mult_square.inc │ ├── asm_arm_mult_square_umaal.inc │ ├── asm_avr.inc │ ├── asm_avr_mult_square.inc │ ├── curve-specific.inc │ ├── emk_project.py │ ├── emk_rules.py │ ├── platform-specific.inc │ ├── scripts │ │ ├── mult_arm.py │ │ ├── mult_avr.py │ │ ├── mult_avr_extra.py │ │ ├── square_arm.py │ │ └── square_avr.py │ ├── test │ │ ├── ecc_test │ │ │ └── ecc_test.ino │ │ ├── emk_rules.py │ │ ├── test_compress.c │ │ ├── test_compute.c │ │ ├── test_ecdh.c │ │ ├── test_ecdsa.c │ │ └── test_ecdsa_deterministic.c.example │ ├── types.h │ ├── uECC.c │ ├── uECC.h │ └── uECC_vli.h │ ├── sha256.cpp │ └── sha256.h ├── programmer ├── .gitignore ├── gourry-programmer.sh ├── nuke_keys.py ├── openocd │ ├── __init__.py │ └── flashProgrammer.py ├── program-both.sh ├── program-normal-user.sh ├── program-uber-user.sh ├── program.py └── test.py └── tritTest ├── .gitignore ├── tritTest.sln └── tritTest ├── .gitignore ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── tritTest.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/README.md -------------------------------------------------------------------------------- /firmware/DarkNet-EclipseStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DarkNet-EclipseStyle.xml -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.cproject -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.gitignore -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.mxproject -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.project -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.settings/language.settings.xml -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/dma.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/fatfs.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/ffconf.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/gpio.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/i2c.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/jdata_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/jdata_conf.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/jmorecfg.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/main.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/spi.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/tim.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/usart.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/usb_device.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/usbd_cdc_if.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/usbd_conf.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/usbd_desc.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Inc/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Inc/user_diskio.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/diskio.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/diskio.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff_gen_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff_gen_drv.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff_gen_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/ff_gen_drv.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Middlewares/Third_Party/FatFs/src/integer.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/STM32F411RETx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/STM32F411RETx_FLASH.ld -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/README.md -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/idl_gen_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/idl_gen_text.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/idl_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/3dParty/flatbuffer/idl_parser.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/KeyStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/KeyStore.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/KeyStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/KeyStore.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/TITS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/TITS.png -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/TITS.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/TITS.xcf -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_128-sized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_128-sized.png -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_96-sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_96-sized.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_96-sized.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/dc_zia_96-sized.xcf -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/images.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/stickers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/stickers.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/stickers.png -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/test.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/art/tits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/art/tits.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/darknet7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/darknet7.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/darknet7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/darknet7.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/hardware_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/hardware_config.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/init.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/init.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/mcu_to_mcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/mcu_to_mcu.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/mcu_to_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/mcu_to_mcu.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/3d/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/3d/renderer.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/3d/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/3d/renderer.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/3d/vec_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/3d/vec_math.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/3d/vec_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/3d/vec_math.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/AddressState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/AddressState.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/AddressState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/AddressState.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/GameOfLife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/GameOfLife.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/GameOfLife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/GameOfLife.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/SendMsgState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/SendMsgState.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/SendMsgState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/SendMsgState.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/badge_info_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/badge_info_state.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/badge_info_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/badge_info_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/communications_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/communications_settings.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/communications_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/communications_settings.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/darknet7_base_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/darknet7_base_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/gui_list_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/gui_list_processor.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/gui_list_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/gui_list_processor.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/health.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/health.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/mcu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/mcu_info.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/mcu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/mcu_info.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/menu3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/menu3d.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/menu3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/menu3d.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/menu_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/menu_state.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/menu_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/menu_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/pairing_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/pairing_state.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/pairing_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/pairing_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/sao_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/sao_menu.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/sao_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/sao_menu.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/scan.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/scan.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/setting_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/setting_state.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/setting_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/setting_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/tamagotchi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/tamagotchi.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/tamagotchi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/tamagotchi.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/test_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/test_state.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/menus/test_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/menus/test_state.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/messaging/common_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/messaging/common_generated.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/messaging/esp_to_stm_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/messaging/esp_to_stm_generated.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/messaging/stm_to_esp_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/messaging/stm_to_esp_generated.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/virtual_key_board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/virtual_key_board.cpp -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/darknet/virtual_key_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/darknet/virtual_key_board.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/dma.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/fatfs.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/gpio.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/i2c.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/jdata_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/jdata_conf.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/main.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/sd_spi/fat_sd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/sd_spi/fat_sd_spi.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/sd_spi/fat_sd_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/sd_spi/fat_sd_spi.h -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/spi.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/tim.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/usart.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/usb_device.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/usbd_cdc_if.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/usbd_conf.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/usbd_desc.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/Src/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/Src/user_diskio.c -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/chipinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/chipinfo.txt -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/darknet-7 Debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/darknet-7 Debug.cfg -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/darknet-7.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/darknet-7.ioc -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/darknet-7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/darknet-7.xml -------------------------------------------------------------------------------- /firmware/DevBoard/darknet-7/startup/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/DevBoard/darknet-7/startup/startup_stm32f411xe.s -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/.cproject -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/.mxproject -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/.project -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/.settings/language.settings.xml -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/DC26 Debug.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/DC26 Debug.cfg -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/DC26.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/DC26.ioc -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/dma.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/gpio.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/i2c.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/jconfig.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/jdata_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/jdata_conf.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/jmorecfg.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/libjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/libjpeg.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/main.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/spi.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/usart.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/usb_device.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/usbd_cdc_if.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/usbd_conf.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Inc/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Inc/usbd_desc.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/include/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/include/jdct.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/include/jerror.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jaricom.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jcarith.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jccolor.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jchuff.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Middlewares/Third_Party/LibJPEG/source/jcinit.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/NUCLEO-F411RE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/NUCLEO-F411RE.xml -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/STM32F411RETx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/STM32F411RETx_FLASH.ld -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/darknet/DC26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/darknet/DC26.cpp -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/darknet/DC26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/darknet/DC26.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/darknet/hardware_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/darknet/hardware_config.cpp -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/darknet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/darknet/init.cpp -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/darknet/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/darknet/init.h -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/dma.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/gpio.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/i2c.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/libjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/libjpeg.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/main.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/spi.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/usart.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/usb_device.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/usbd_cdc_if.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/usbd_conf.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/Src/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/Src/usbd_desc.c -------------------------------------------------------------------------------- /firmware/NucleoF411RE/DC26/startup/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/NucleoF411RE/DC26/startup/startup_stm32f411xe.s -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/bin/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/bin/firmware.hex -------------------------------------------------------------------------------- /firmware/common/common.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/common/common.fbs -------------------------------------------------------------------------------- /firmware/common/esp_to_stm.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/common/esp_to_stm.fbs -------------------------------------------------------------------------------- /firmware/common/run_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/common/run_linux.sh -------------------------------------------------------------------------------- /firmware/common/run_stm32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/common/run_stm32.bat -------------------------------------------------------------------------------- /firmware/common/stm_to_esp.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/common/stm_to_esp.fbs -------------------------------------------------------------------------------- /firmware/dc26-sao/eggplant/EEPROMAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/dc26-sao/eggplant/EEPROMAnything.h -------------------------------------------------------------------------------- /firmware/dc26-sao/eggplant/eggplant.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/dc26-sao/eggplant/eggplant.ino -------------------------------------------------------------------------------- /firmware/dc26-sao/eggplant/eggplant_i2c_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/dc26-sao/eggplant/eggplant_i2c_api.txt -------------------------------------------------------------------------------- /firmware/dc26-sao/eggplant/make-eeprom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/dc26-sao/eggplant/make-eeprom.pl -------------------------------------------------------------------------------- /firmware/dc26-sao/mega_duo_i2c_test/mega_duo_i2c_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/dc26-sao/mega_duo_i2c_test/mega_duo_i2c_test.ino -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/.cproject -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/.project -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/Makefile -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/README.md -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/fatfs_image/Makefile.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/fatfs_image/Makefile.projbuild -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/fatfs_image/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/fatfs_image/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/fatfs_image/image/images/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/fatfs_image/image/images/in.png -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/fatfs_image/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/fatfs_image/image/index.html -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/README.md -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/base.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/flatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/flatc.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/grpc.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/hash.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/idl.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/flatbuffers/util.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/idl_gen_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/idl_gen_text.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/flatbuffer/idl_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/flatbuffer/idl_parser.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/Makefile.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/Makefile.projbuild -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/Makefile -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/README.md -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/ccsbcs.c -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/crc.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/fatfs.c -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/fatfs/fatfs.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/main.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Arg.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/ArgTraits.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/COPYING -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/CmdLine.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Constraint.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/MultiArg.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/StdOutput.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/SwitchArg.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/ValueArg.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/Visitor.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/components/mkfatfs/src/tclap/XorHandler.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/Kconfig.projbuild -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/command_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/command_handler.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/command_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/command_handler.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/common_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/common_generated.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ESP WROOM 32-Interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ESP WROOM 32-Interaction.png -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble_serial.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/ble_serial.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/pairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/pairing.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/pairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/pairing.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/scanning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/scanning.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/scanning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/scanning.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/security.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/security.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/dc26_ble/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/dc26_ble/services.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/display_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/display_handler.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/display_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/display_handler.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/esp_to_stm_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/esp_to_stm_generated.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FATFS_VFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FATFS_VFS.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FATFS_VFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FATFS_VFS.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/File.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/File.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FileSystem.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FileSystem.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FreeRTOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FreeRTOS.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/FreeRTOS.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/GeneralUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/GeneralUtils.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/GeneralUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/GeneralUtils.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/Memory.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/Memory.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/System.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/System.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/Task.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/Task.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2902.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2902.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2902.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2902.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2904.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2904.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLE2904.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAddress.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAddress.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertisedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertisedDevice.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertisedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertisedDevice.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertising.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEAdvertising.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEBeacon.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEBeacon.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristic.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristic.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristicMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLECharacteristicMap.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEClient.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEClient.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptor.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptor.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDescriptorMap.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDevice.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEDevice.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEExceptions.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEExceptions.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEHIDDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEHIDDevice.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEHIDDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEHIDDevice.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteCharacteristic.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteCharacteristic.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteDescriptor.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteDescriptor.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteService.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLERemoteService.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEScan.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEScan.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLESecurity.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLESecurity.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServer.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServer.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEService.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEService.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServiceMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEServiceMap.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUUID.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUUID.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUtils.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEUtils.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEValue.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/BLEValue.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/HIDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/HIDTypes.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ble/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ble/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/fonts.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/fonts.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/gui.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/gui.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/i2c.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/i2c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/i2c.hpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/json/JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/json/JSON.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/json/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/json/JSON.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/json/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/json/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/GeneralUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/GeneralUtils.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/GeneralUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/GeneralUtils.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpParser.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpParser.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpRequest.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpRequest.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpResponse.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpResponse.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpServer.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/HttpServer.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/SSLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/SSLUtils.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/SSLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/SSLUtils.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/SockServ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/SockServ.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/SockServ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/SockServ.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/Socket.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/Socket.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocket.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocket.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocketFileTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocketFileTransfer.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocketFileTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/WebSocketFileTransfer.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/net/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/net/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ssd1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ssd1306.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/ssd1306.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFi.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFi.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFiEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFiEventHandler.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFiEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/wifi/WiFiEventHandler.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/lib/wifi/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/lib/wifi/component.mk -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/mcu_to_mcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/mcu_to_mcu.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/mcu_to_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/mcu_to_mcu.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/npc_interact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/npc_interact.cpp -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/npc_interact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/npc_interact.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/main/stm_to_esp_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/main/stm_to_esp_generated.h -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/partitions.csv -------------------------------------------------------------------------------- /firmware/esp-wroom-32/dc26-esp/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/dc26-esp/sdkconfig -------------------------------------------------------------------------------- /firmware/esp-wroom-32/docs/esp-wroom-32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/esp-wroom-32/docs/esp-wroom-32_datasheet_en.pdf -------------------------------------------------------------------------------- /firmware/esp-wroom-32/env.sh: -------------------------------------------------------------------------------- 1 | cd esp-idf 2 | export IDF_PATH=$PWD 3 | . ./add_path.sh 4 | cd .. 5 | -------------------------------------------------------------------------------- /firmware/main1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/main1.PNG -------------------------------------------------------------------------------- /firmware/main2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/main2.PNG -------------------------------------------------------------------------------- /firmware/tools/bin/linux/flatc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/tools/bin/linux/flatc -------------------------------------------------------------------------------- /firmware/tools/bin/linux/flathash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/tools/bin/linux/flathash -------------------------------------------------------------------------------- /firmware/tools/bin/win/flatc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/firmware/tools/bin/win/flatc.exe -------------------------------------------------------------------------------- /hardware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/.gitignore -------------------------------------------------------------------------------- /hardware/dc26-lbr/APA104.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/APA104.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/BU33SD5WG-TR.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/BU33SD5WG-TR.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.stl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.stp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/3D/LDL112D33R.wrl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Altium/LDL112D33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Altium/LDL112D33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Altium/LDL112D33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Altium/LDL112D33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CADSTAR/LDL112D33R.csa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CADSTAR/LDL112D33R.csa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CADSTAR/SOIC127P600X175-8N.cpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CADSTAR/SOIC127P600X175-8N.cpa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-5000/LDL112D33R.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-5000/LDL112D33R.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-5000/LDL112D33R.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-5000/LDL112D33R.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-5000/SOIC127P600X175-8N.ftf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-5000/SOIC127P600X175-8N.ftf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-5000/SOIC127P600X175-8N.pkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-5000/SOIC127P600X175-8N.pkf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-8000/LDL112D33R.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-8000/LDL112D33R.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-8000/LDL112D33R.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-8000/LDL112D33R.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-8000/SOIC127P600X175-8N.ftf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-8000/SOIC127P600X175-8N.ftf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/CR-8000/SOIC127P600X175-8N.pkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/CR-8000/SOIC127P600X175-8N.pkf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/DesignSpark PCB/LDL112D33R.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/DesignSpark PCB/LDL112D33R.dsl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/DipTrace/LDL112D33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/DipTrace/LDL112D33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/DipTrace/LDL112D33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/DipTrace/LDL112D33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/EAGLE/LDL112D33R.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/EAGLE/LDL112D33R.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/EasyEDA/LDL112D33R.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/EasyEDA/LDL112D33R.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/KiCad/LDL112D33R.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/KiCad/LDL112D33R.dcm -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/LDL112D33R.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/LDL112D33R.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/OrCAD_Allegro/LDL112D33R.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/OrCAD_Allegro/LDL112D33R.edf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/OrCAD_Allegro/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/OrCAD_Allegro/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/PADS/LDL112D33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/PADS/LDL112D33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/PADS/LDL112D33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/PADS/LDL112D33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Pulsonix/LDL112D33R.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Pulsonix/LDL112D33R.plx -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/TARGET 3001!/LDL112D33R.cxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/TARGET 3001!/LDL112D33R.cxf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Xpedition/LDL112D33R.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Xpedition/LDL112D33R.1 -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Xpedition/padstacks.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Xpedition/padstacks.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/eCADSTAR/LDL112D33R.parta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/eCADSTAR/LDL112D33R.parta -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/eCADSTAR/LDL112D33R.symba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/eCADSTAR/LDL112D33R.symba -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/eCADSTAR/SOIC127P600X175-8N.foota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/eCADSTAR/SOIC127P600X175-8N.foota -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/eCADSTAR/SOIC127P600X175-8N.packa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/eCADSTAR/SOIC127P600X175-8N.packa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/version.bin -------------------------------------------------------------------------------- /hardware/dc26-lbr/LDL112D33R/xDX Designer/LDL112D33R.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LDL112D33R/xDX Designer/LDL112D33R.1 -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/ABL-8.000MHZ-B2.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/ABL-8.000MHZ-B2.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/ABL-8.000MHZ-B2/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_ABL-8.000MHZ-B2/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.stl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.stp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/3D/BLM18TG221TN1D.wrl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/BLM18TG221TN1D.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/BLM18TG221TN1D.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/PADS/BLM18TG221TN1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/PADS/BLM18TG221TN1D.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/PADS/BLM18TG221TN1D.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/PADS/BLM18TG221TN1D.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/BLM18TG221TN1D/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_BLM18TG221TN1D/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_BLM18TG221TN1D/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/CMDZ3L3_TR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/CMDZ3L3_TR.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/CMDZ3L3_TR.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/CMDZ3L3_TR.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CADSTAR/CMDZ3L3_TR.csa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CADSTAR/CMDZ3L3_TR.csa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CADSTAR/SOD2512X110N.cpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CADSTAR/SOD2512X110N.cpa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CMDZ3L3_TR.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CMDZ3L3_TR.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/CMDZ3L3_TR.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/CMDZ3L3_TR.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/CMDZ3L3_TR.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/CMDZ3L3_TR.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/SOD2512X110N.ftf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/SOD2512X110N.ftf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/SOD2512X110N.pkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-5000/SOD2512X110N.pkf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/CMDZ3L3_TR.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/CMDZ3L3_TR.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/CMDZ3L3_TR.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/CMDZ3L3_TR.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/SOD2512X110N.ftf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/SOD2512X110N.ftf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/SOD2512X110N.pkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/CR-8000/SOD2512X110N.pkf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/CMDZ3L3_TR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/CMDZ3L3_TR.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/CMDZ3L3_TR.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/CMDZ3L3_TR.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/CMDZ3L3_TR.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/CMDZ3L3_TR.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/ULP_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/ULP_README.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/samacsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/samacsys.png -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/samacsys.ulp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EAGLE/ULP/samacsys.ulp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EasyEDA/CMDZ3L3_TR.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EasyEDA/CMDZ3L3_TR.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/KiCad/CMDZ3L3_TR.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/KiCad/CMDZ3L3_TR.dcm -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/OrCAD_Allegro/CMDZ3L3_TR.edf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/OrCAD_Allegro/CMDZ3L3_TR.edf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/OrCAD_Allegro/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/OrCAD_Allegro/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/PADS/CMDZ3L3_TR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/PADS/CMDZ3L3_TR.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/PADS/CMDZ3L3_TR.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/PADS/CMDZ3L3_TR.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Pulsonix/CMDZ3L3_TR.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Pulsonix/CMDZ3L3_TR.plx -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/TARGET 3001!/CMDZ3L3_TR.cxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/TARGET 3001!/CMDZ3L3_TR.cxf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/CMDZ3L3_TR.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/CMDZ3L3_TR.1 -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/padstacks.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/padstacks.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/xDX Designer/CMDZ3L3_TR.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/CMDZ3L3_TR/xDX Designer/CMDZ3L3_TR.1 -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_CMDZ3L3_TR/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_CMDZ3L3_TR/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.stl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.stp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/3D/LD39050PU33R.wrl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/LD39050PU33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/LD39050PU33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/LD39050PU33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/LD39050PU33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CADSTAR/LD39050PU33R.csa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CADSTAR/LD39050PU33R.csa -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-5000/LD39050PU33R.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-5000/LD39050PU33R.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-5000/LD39050PU33R.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-5000/LD39050PU33R.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-8000/LD39050PU33R.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-8000/LD39050PU33R.cdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-8000/LD39050PU33R.laf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/CR-8000/LD39050PU33R.laf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/LD39050PU33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/LD39050PU33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/LD39050PU33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/LD39050PU33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/LD39050PU33R.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/LD39050PU33R.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/ULP_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/ULP_README.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/samacsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/samacsys.png -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/samacsys.ulp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EAGLE/ULP/samacsys.ulp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EasyEDA/LD39050PU33R.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EasyEDA/LD39050PU33R.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/KiCad/LD39050PU33R.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/KiCad/LD39050PU33R.dcm -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/LD39050PU33R.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/LD39050PU33R.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/OrCAD_Allegro/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/OrCAD_Allegro/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/PADS/LD39050PU33R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/PADS/LD39050PU33R.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/PADS/LD39050PU33R.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/PADS/LD39050PU33R.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Pulsonix/LD39050PU33R.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Pulsonix/LD39050PU33R.plx -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/LD39050PU33R.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/LD39050PU33R.1 -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/padstacks.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/padstacks.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/LD39050PU33R/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39050PU33R/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39050PU33R/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.stl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.stp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/3D/LD39100PU33RY.wrl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/LD39100PU33RY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/LD39100PU33RY.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/LD39100PU33RY.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/LD39100PU33RY.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/LD39100PU33RY.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/LD39100PU33RY.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/ULP/samacsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/ULP/samacsys.png -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/ULP/samacsys.ulp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EAGLE/ULP/samacsys.ulp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/KiCad/LD39100PU33RY.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/KiCad/LD39100PU33RY.dcm -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/LD39100PU33RY.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/LD39100PU33RY.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/PADS/LD39100PU33RY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/PADS/LD39100PU33RY.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/PADS/LD39100PU33RY.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/PADS/LD39100PU33RY.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/padstacks.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/padstacks.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/LD39100PU33RY/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LD39100PU33RY/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LD39100PU33RY/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/A_WARNING_USER_CONTRIBUTED_PART.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/A_WARNING_USER_CONTRIBUTED_PART.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/LM4040D50IDBZR.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/LM4040D50IDBZR.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/PADS/LM4040D50IDBZR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/PADS/LM4040D50IDBZR.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/PADS/LM4040D50IDBZR.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/PADS/LM4040D50IDBZR.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/LM4040D50IDBZR/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_LM4040D50IDBZR/version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_LM4040D50IDBZR/version.bin -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.stl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.stp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/3D/STM32F411RET6.wrl -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/STM32F411RET6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/STM32F411RET6.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/STM32F411RET6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Altium/STM32F411RET6.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/DipTrace/PIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/DipTrace/PIN.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/STM32F411RET6.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/STM32F411RET6.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/ULP/samacsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/ULP/samacsys.png -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/ULP/samacsys.ulp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EAGLE/ULP/samacsys.ulp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EasyEDA/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/EasyEDA/Readme.html -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/How_To_Use_Models.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/How_To_Use_Models.pdf -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/KiCad/STM32F411RET6.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/KiCad/STM32F411RET6.dcm -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/PADS/STM32F411RET6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/PADS/STM32F411RET6.c -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/PADS/STM32F411RET6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/PADS/STM32F411RET6.p -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/STM32F411RET6.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/STM32F411RET6.epw -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/cell.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/cell.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/padstacks.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/padstacks.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/pdb.hkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/STM32F411RET6/Xpedition/pdb.hkp -------------------------------------------------------------------------------- /hardware/dc26-lbr/LIB_STM32F411RET6/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/LIB_STM32F411RET6/license.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/TRF7960ARHBT/Eagle.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/TRF7960ARHBT/Eagle.sch -------------------------------------------------------------------------------- /hardware/dc26-lbr/TRF7960ARHBT/Eagle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/TRF7960ARHBT/Eagle.xml -------------------------------------------------------------------------------- /hardware/dc26-lbr/TRF7960ARHBT/Eagle.xml_Library.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/TRF7960ARHBT/Eagle.xml_Library.scr -------------------------------------------------------------------------------- /hardware/dc26-lbr/TRF7960ARHBT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/TRF7960ARHBT/readme.txt -------------------------------------------------------------------------------- /hardware/dc26-lbr/dc-26.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/dc-26.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/esp32-1.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/esp32-1.lbr -------------------------------------------------------------------------------- /hardware/dc26-lbr/esp32.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-lbr/esp32.lbr -------------------------------------------------------------------------------- /hardware/dc26-sao/eggplant/eggplant-BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-sao/eggplant/eggplant-BOM.xls -------------------------------------------------------------------------------- /hardware/dc26-sao/eggplant/eggplant.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-sao/eggplant/eggplant.brd -------------------------------------------------------------------------------- /hardware/dc26-sao/eggplant/eggplant.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/dc26-sao/eggplant/eggplant.sch -------------------------------------------------------------------------------- /hardware/devboard/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/TODO.txt -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/DESCRIPTION: -------------------------------------------------------------------------------- 1 | initial development board for dc26 -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/README.md -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c-3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c-3.brd -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c-3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c-3.sch -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c.brd -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-board-apa102c.sch -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-board.sch -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26-dev-boardv3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26-dev-boardv3.sch -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26.brd -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/dc26.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/dc26.sch -------------------------------------------------------------------------------- /hardware/devboard/dc26-dev-board/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/devboard/dc26-dev-board/eagle.epf -------------------------------------------------------------------------------- /hardware/docs/0ZCA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/0ZCA.pdf -------------------------------------------------------------------------------- /hardware/docs/463766934042091920zcj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/463766934042091920zcj.pdf -------------------------------------------------------------------------------- /hardware/docs/ABL-8.000MHZ-B2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ABL-8.000MHZ-B2.pdf -------------------------------------------------------------------------------- /hardware/docs/ALPS-SSAJ120100-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ALPS-SSAJ120100-datasheet.pdf -------------------------------------------------------------------------------- /hardware/docs/APA-106-ETC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/APA-106-ETC.pdf -------------------------------------------------------------------------------- /hardware/docs/APA102.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/APA102.pdf -------------------------------------------------------------------------------- /hardware/docs/APA104 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/APA104 Datasheet.pdf -------------------------------------------------------------------------------- /hardware/docs/ESP-WROOM-S2_Datasheet__EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ESP-WROOM-S2_Datasheet__EN.pdf -------------------------------------------------------------------------------- /hardware/docs/LD39050-PowerRegulator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/LD39050-PowerRegulator.pdf -------------------------------------------------------------------------------- /hardware/docs/LD39100-PowerRegulator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/LD39100-PowerRegulator.pdf -------------------------------------------------------------------------------- /hardware/docs/LDL112D33R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/LDL112D33R.pdf -------------------------------------------------------------------------------- /hardware/docs/LEDs-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/LEDs-2.PNG -------------------------------------------------------------------------------- /hardware/docs/LEDs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/LEDs.PNG -------------------------------------------------------------------------------- /hardware/docs/MCP73831T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/MCP73831T.pdf -------------------------------------------------------------------------------- /hardware/docs/MJTP_6MM-25494.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/MJTP_6MM-25494.pdf -------------------------------------------------------------------------------- /hardware/docs/NoteOnCrystalOscillators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/NoteOnCrystalOscillators.pdf -------------------------------------------------------------------------------- /hardware/docs/S2303 THRU S2336 N0291 REV.A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/S2303 THRU S2336 N0291 REV.A.pdf -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information.html -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/2017_inq_eng_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/2017_inq_eng_off.jpg -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/Reel38_W.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/Reel38_W.GIF -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/SLIDE_H.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/SLIDE_H.GIF -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/SSSS811101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/SSSS811101.jpg -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_31.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_31.GIF -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_32.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_32.GIF -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_33.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/SSSS8_D_33.GIF -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/alps_logo_eng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/alps_logo_eng.gif -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/btn_pagetop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/btn_pagetop.png -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/close_eng_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/close_eng_off.jpg -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/common.js.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/common.js.download -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/icon_download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/icon_download.jpg -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/original.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/original.css -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/personal_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/personal_style.css -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/style_flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/style_flat.css -------------------------------------------------------------------------------- /hardware/docs/SSSS8 Series - Basic information_files/style_flat_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/SSSS8 Series - Basic information_files/style_flat_print.css -------------------------------------------------------------------------------- /hardware/docs/S_110_LTST-C190KGKT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/S_110_LTST-C190KGKT.pdf -------------------------------------------------------------------------------- /hardware/docs/WS2811.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/WS2811.pdf -------------------------------------------------------------------------------- /hardware/docs/XBP15SRV05W.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/XBP15SRV05W.pdf -------------------------------------------------------------------------------- /hardware/docs/buxxsd5wg-e.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/buxxsd5wg-e.pdf -------------------------------------------------------------------------------- /hardware/docs/cmdz5l1-36l.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/cmdz5l1-36l.pdf -------------------------------------------------------------------------------- /hardware/docs/ds11303.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ds11303.pdf -------------------------------------------------------------------------------- /hardware/docs/en.CD00259245.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.CD00259245.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00105879.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00105879.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00115249.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00115249.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00115714-getting-started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00115714-getting-started.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00119316.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00119316.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00235987.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00235987.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00236305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00236305.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00327191.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00327191.pdf -------------------------------------------------------------------------------- /hardware/docs/en.DM00354244.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/en.DM00354244.pdf -------------------------------------------------------------------------------- /hardware/docs/esp-wroom-32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/esp-wroom-32_datasheet_en.pdf -------------------------------------------------------------------------------- /hardware/docs/esp32_hardware_design_guidelines_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/esp32_hardware_design_guidelines_en.pdf -------------------------------------------------------------------------------- /hardware/docs/esp32_technical_reference_manual_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/esp32_technical_reference_manual_en.pdf -------------------------------------------------------------------------------- /hardware/docs/ferrite-bead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ferrite-bead.pdf -------------------------------------------------------------------------------- /hardware/docs/led-symbols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/led-symbols.jpg -------------------------------------------------------------------------------- /hardware/docs/superled-blog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/superled-blog.pdf -------------------------------------------------------------------------------- /hardware/docs/trf7960a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/trf7960a.pdf -------------------------------------------------------------------------------- /hardware/docs/ws2811mpdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/hardware/docs/ws2811mpdf.pdf -------------------------------------------------------------------------------- /software/BadgeGen/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/.cproject -------------------------------------------------------------------------------- /software/BadgeGen/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /software/BadgeGen/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/.project -------------------------------------------------------------------------------- /software/BadgeGen/Debug/BadgeGen2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/Debug/BadgeGen2 -------------------------------------------------------------------------------- /software/BadgeGen/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/Debug/makefile -------------------------------------------------------------------------------- /software/BadgeGen/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/Debug/objects.mk -------------------------------------------------------------------------------- /software/BadgeGen/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/Debug/sources.mk -------------------------------------------------------------------------------- /software/BadgeGen/badge-info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/badge-info.sql -------------------------------------------------------------------------------- /software/BadgeGen/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/commands.txt -------------------------------------------------------------------------------- /software/BadgeGen/count_badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/count_badges.txt -------------------------------------------------------------------------------- /software/BadgeGen/dupstohex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/dupstohex.sh -------------------------------------------------------------------------------- /software/BadgeGen/openocd-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/openocd-help.txt -------------------------------------------------------------------------------- /software/BadgeGen/src/BadgeGen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/BadgeGen2.cpp -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/.gitignore -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/LICENSE.txt -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/README.md -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/asm_arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/asm_arm.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/asm_arm_mult_square.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/asm_arm_mult_square.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/asm_arm_mult_square_umaal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/asm_arm_mult_square_umaal.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/asm_avr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/asm_avr.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/asm_avr_mult_square.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/asm_avr_mult_square.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/curve-specific.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/curve-specific.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/emk_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/emk_project.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/emk_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/emk_rules.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/platform-specific.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/platform-specific.inc -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/scripts/mult_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/scripts/mult_arm.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/scripts/mult_avr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/scripts/mult_avr.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/scripts/mult_avr_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/scripts/mult_avr_extra.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/scripts/square_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/scripts/square_arm.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/scripts/square_avr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/scripts/square_avr.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/ecc_test/ecc_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/ecc_test/ecc_test.ino -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/emk_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/emk_rules.py -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/test_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/test_compress.c -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/test_compute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/test_compute.c -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/test_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/test_ecdh.c -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/test_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/test_ecdsa.c -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/test/test_ecdsa_deterministic.c.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/test/test_ecdsa_deterministic.c.example -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/types.h -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/uECC.c -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/uECC.h -------------------------------------------------------------------------------- /software/BadgeGen/src/micro-ecc/uECC_vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/micro-ecc/uECC_vli.h -------------------------------------------------------------------------------- /software/BadgeGen/src/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/sha256.cpp -------------------------------------------------------------------------------- /software/BadgeGen/src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/BadgeGen/src/sha256.h -------------------------------------------------------------------------------- /software/programmer/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /software/programmer/gourry-programmer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/gourry-programmer.sh -------------------------------------------------------------------------------- /software/programmer/nuke_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/nuke_keys.py -------------------------------------------------------------------------------- /software/programmer/openocd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/programmer/openocd/flashProgrammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/openocd/flashProgrammer.py -------------------------------------------------------------------------------- /software/programmer/program-both.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/program-both.sh -------------------------------------------------------------------------------- /software/programmer/program-normal-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/program-normal-user.sh -------------------------------------------------------------------------------- /software/programmer/program-uber-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/program-uber-user.sh -------------------------------------------------------------------------------- /software/programmer/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/program.py -------------------------------------------------------------------------------- /software/programmer/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/programmer/test.py -------------------------------------------------------------------------------- /software/tritTest/.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | -------------------------------------------------------------------------------- /software/tritTest/tritTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/tritTest/tritTest.sln -------------------------------------------------------------------------------- /software/tritTest/tritTest/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | bin/ 3 | .vs/ 4 | -------------------------------------------------------------------------------- /software/tritTest/tritTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/tritTest/tritTest/App.config -------------------------------------------------------------------------------- /software/tritTest/tritTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/tritTest/tritTest/Program.cs -------------------------------------------------------------------------------- /software/tritTest/tritTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/tritTest/tritTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /software/tritTest/tritTest/tritTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedarknet/dc26-badge/HEAD/software/tritTest/tritTest/tritTest.csproj --------------------------------------------------------------------------------