├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── doc-images ├── hw-overview.png ├── intermittency.png ├── northwestern_logo.jpg ├── system-engage.png ├── tudelft_logo.png └── youtube_thumbnail.png ├── enclosure ├── ENGAGE-Bottom.stl ├── ENGAGE-Button.stl ├── ENGAGE-DPad.stl ├── ENGAGE-LCD-Holder.stl ├── ENGAGE-Small-Button.stl └── ENGAGE-Top.stl ├── hardware ├── apollo-3-module │ ├── apollo-3-module-bill-of-materials.csv │ ├── apollo3_module.kicad_pcb │ ├── apollo3_module.pro │ ├── apollo3_module.sch │ ├── gerbers │ │ └── Apollo-3-module-v1-1.zip │ └── schematic │ │ └── apollo3_module.pdf └── main-board │ ├── Display.sch │ ├── MCU.sch │ ├── USB_PSU.sch │ ├── button_harv.sch │ ├── cartridge.sch │ ├── gerbers │ └── main-board-v1-2.zip │ ├── harvester.sch │ ├── main-board-bill-of-materials.csv │ ├── main-board.kicad_pcb │ ├── main-board.pro │ ├── main-board.sch │ └── schematic │ └── main-board.pdf └── software ├── CMakeLists.txt ├── CPPLINT.cfg ├── apps ├── CMakeLists.txt ├── checkpoint │ ├── CMakeLists.txt │ ├── checkpoint_test.c │ └── config │ │ └── checkpoint_content.h ├── emulator │ ├── CMakeLists.txt │ ├── config │ │ └── checkpoint_content.h │ └── main_emulator.c └── memtracker │ ├── CMakeLists.txt │ └── main_memtracker.c ├── bin ├── checkpoint.elf ├── emulator.elf └── memtracker.elf ├── build └── .gitkeep ├── config ├── apollo-toolchain.cmake ├── apollo3.ld ├── emulator_settings.h ├── exclude_checkpoint_bss.ld ├── exclude_checkpoint_data.ld ├── startup_gcc.c ├── stm32f7xx.h └── stm32f7xx_hal.h ├── docs └── .gitkeep ├── external ├── CMSIS │ ├── ARM │ │ ├── Include │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_cm4.h │ │ │ └── mpu_armv7.h │ │ └── Lib │ │ │ └── ARM │ │ │ ├── arm_cortexM4l_math.lib │ │ │ ├── arm_cortexM4lf_math.lib │ │ │ ├── iar_cortexM4l_math.a │ │ │ ├── iar_cortexM4lf_math.a │ │ │ ├── libarm_cortexM4l_math.a │ │ │ └── libarm_cortexM4lf_math.a │ ├── AmbiqMicro │ │ ├── Include │ │ │ ├── apollo1.h │ │ │ ├── apollo2.h │ │ │ ├── apollo3.h │ │ │ ├── apollo3p.h │ │ │ ├── system_apollo1.h │ │ │ ├── system_apollo2.h │ │ │ ├── system_apollo3.h │ │ │ └── system_apollo3p.h │ │ └── Source │ │ │ ├── startup_apollo1.s │ │ │ ├── startup_apollo2.s │ │ │ ├── startup_apollo3.s │ │ │ ├── startup_apollo3p.s │ │ │ ├── system_apollo1.c │ │ │ ├── system_apollo2.c │ │ │ ├── system_apollo3.c │ │ │ └── system_apollo3p.c │ └── version_cmsis_info.txt ├── README.md ├── ambiq_ble │ ├── apps │ │ ├── amdtpc │ │ │ ├── amdtp_api.h │ │ │ └── amdtp_main.c │ │ ├── amdtps │ │ │ ├── amdtp_api.h │ │ │ └── amdtp_main.c │ │ ├── amota │ │ │ ├── amota_api.h │ │ │ └── amota_main.c │ │ ├── ancs │ │ │ ├── ancs_api.h │ │ │ └── ancs_main.c │ │ ├── beaconscanner │ │ │ ├── beaconscanner_api.h │ │ │ └── beaconscanner_main.c │ │ ├── ibeacon │ │ │ ├── ibeacon_api.h │ │ │ └── ibeacon_main.c │ │ ├── prodtest_datc │ │ │ ├── prodtest_datc_api.h │ │ │ └── prodtest_datc_main.c │ │ ├── prodtest_dats │ │ │ ├── prodtest_dats_api.h │ │ │ └── prodtest_dats_main.c │ │ └── vole │ │ │ ├── voice_data.h │ │ │ ├── vole_api.h │ │ │ └── vole_main.c │ ├── em9304 │ │ ├── em9304_init.c │ │ ├── em9304_init.h │ │ ├── em9304_patches.c │ │ └── em9304_patches.h │ ├── menu │ │ ├── ble_menu.c │ │ └── ble_menu.h │ ├── profile_appl │ │ ├── amdtpcommon │ │ │ ├── amdtp_common.c │ │ │ └── amdtp_common.h │ │ ├── amdtps │ │ │ ├── appl_amdtps.c │ │ │ ├── appl_amdtps.h │ │ │ ├── appl_gap_config_params.c │ │ │ ├── gatt_db.c │ │ │ └── gatt_db.h │ │ ├── amota │ │ │ ├── appl_amota.c │ │ │ ├── appl_amota.h │ │ │ ├── appl_gap_config_params.c │ │ │ ├── gatt_db.c │ │ │ └── gatt_db.h │ │ ├── ams │ │ │ ├── appl_ams.c │ │ │ ├── appl_ams.h │ │ │ ├── appl_ams_att_server.c │ │ │ ├── appl_ams_att_server.h │ │ │ ├── appl_gap_config_params.c │ │ │ ├── gatt_db.c │ │ │ └── gatt_db.h │ │ ├── ancs │ │ │ ├── appl_ancs.c │ │ │ ├── appl_ancs.h │ │ │ ├── appl_ancs_att_server.c │ │ │ ├── appl_ancs_att_server.h │ │ │ ├── appl_gap_config_params.c │ │ │ ├── gatt_db.c │ │ │ └── gatt_db.h │ │ ├── fcc_test │ │ │ └── appl_fcc_test.c │ │ ├── ibeacon │ │ │ ├── appl_gap_config_params.c │ │ │ ├── appl_ibeacon.c │ │ │ ├── appl_ibeacon.h │ │ │ ├── gatt_db.c │ │ │ └── gatt_db.h │ │ └── txpower_ctrl │ │ │ └── appl_txpower_ctrl.c │ ├── profiles │ │ ├── amdtpc │ │ │ ├── amdtpc_api.h │ │ │ └── amdtpc_main.c │ │ ├── amdtpcommon │ │ │ ├── amdtp_common.c │ │ │ └── amdtp_common.h │ │ ├── amdtps │ │ │ ├── amdtps_api.h │ │ │ └── amdtps_main.c │ │ ├── amota │ │ │ ├── amotas_api.h │ │ │ └── amotas_main.c │ │ ├── ancc │ │ │ ├── ancc_api.h │ │ │ └── ancc_main.c │ │ ├── vole │ │ │ ├── voles_api.h │ │ │ └── voles_main.c │ │ └── volecommon │ │ │ ├── codec │ │ │ ├── ama │ │ │ │ ├── am_app_KWD_AMA.h │ │ │ │ ├── gcc │ │ │ │ │ └── libama.a │ │ │ │ ├── iar │ │ │ │ │ └── libama.a │ │ │ │ ├── keil │ │ │ │ │ └── libama.lib │ │ │ │ └── pb │ │ │ │ │ ├── accessories.pb.h │ │ │ │ │ ├── calling.pb.h │ │ │ │ │ ├── central.pb.h │ │ │ │ │ ├── common.pb.h │ │ │ │ │ ├── device.pb.h │ │ │ │ │ ├── media.pb.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── pb_encode.h │ │ │ │ │ ├── speech.pb.h │ │ │ │ │ ├── state.pb.h │ │ │ │ │ ├── system.pb.h │ │ │ │ │ └── transport.pb.h │ │ │ ├── opus │ │ │ │ ├── ae_api.h │ │ │ │ ├── gcc │ │ │ │ │ └── libopus.a │ │ │ │ ├── iar │ │ │ │ │ └── libopus.a │ │ │ │ └── keil │ │ │ │ │ └── libopus.lib │ │ │ └── sbc │ │ │ │ ├── sbc.c │ │ │ │ └── sbc.h │ │ │ ├── vole_common.c │ │ │ └── vole_common.h │ └── services │ │ ├── svc_amdtp.c │ │ ├── svc_amdtp.h │ │ ├── svc_amotas.c │ │ ├── svc_amotas.h │ │ ├── svc_amvole.c │ │ └── svc_amvole.h ├── mcu │ ├── Makefile │ ├── am_sdk_version.h │ └── apollo3 │ │ ├── Makefile │ │ ├── am_mcu_apollo.h │ │ ├── hal │ │ ├── Makefile │ │ ├── am_hal_adc.c │ │ ├── am_hal_adc.h │ │ ├── am_hal_ble.c │ │ ├── am_hal_ble.h │ │ ├── am_hal_ble_patch.c │ │ ├── am_hal_ble_patch.h │ │ ├── am_hal_ble_patch_b0.c │ │ ├── am_hal_ble_patch_b0.h │ │ ├── am_hal_burst.c │ │ ├── am_hal_burst.h │ │ ├── am_hal_cachectrl.c │ │ ├── am_hal_cachectrl.h │ │ ├── am_hal_clkgen.c │ │ ├── am_hal_clkgen.h │ │ ├── am_hal_cmdq.c │ │ ├── am_hal_cmdq.h │ │ ├── am_hal_ctimer.c │ │ ├── am_hal_ctimer.h │ │ ├── am_hal_debug.c │ │ ├── am_hal_debug.h │ │ ├── am_hal_flash.c │ │ ├── am_hal_flash.h │ │ ├── am_hal_global.c │ │ ├── am_hal_global.h │ │ ├── am_hal_gpio.c │ │ ├── am_hal_gpio.h │ │ ├── am_hal_interrupt.c │ │ ├── am_hal_interrupt.h │ │ ├── am_hal_iom.c │ │ ├── am_hal_iom.h │ │ ├── am_hal_ios.c │ │ ├── am_hal_ios.h │ │ ├── am_hal_itm.c │ │ ├── am_hal_itm.h │ │ ├── am_hal_mcuctrl.c │ │ ├── am_hal_mcuctrl.h │ │ ├── am_hal_mspi.c │ │ ├── am_hal_mspi.h │ │ ├── am_hal_pdm.c │ │ ├── am_hal_pdm.h │ │ ├── am_hal_pin.h │ │ ├── am_hal_pwrctrl.c │ │ ├── am_hal_pwrctrl.h │ │ ├── am_hal_pwrctrl_internal.h │ │ ├── am_hal_queue.c │ │ ├── am_hal_queue.h │ │ ├── am_hal_reset.c │ │ ├── am_hal_reset.h │ │ ├── am_hal_rtc.c │ │ ├── am_hal_rtc.h │ │ ├── am_hal_scard.c │ │ ├── am_hal_scard.h │ │ ├── am_hal_secure_ota.c │ │ ├── am_hal_secure_ota.h │ │ ├── am_hal_security.c │ │ ├── am_hal_security.h │ │ ├── am_hal_status.h │ │ ├── am_hal_stimer.c │ │ ├── am_hal_stimer.h │ │ ├── am_hal_sysctrl.c │ │ ├── am_hal_sysctrl.h │ │ ├── am_hal_systick.c │ │ ├── am_hal_systick.h │ │ ├── am_hal_tpiu.c │ │ ├── am_hal_tpiu.h │ │ ├── am_hal_uart.c │ │ ├── am_hal_uart.h │ │ ├── am_hal_wdt.c │ │ ├── am_hal_wdt.h │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── bin │ │ │ │ └── libam_hal.a │ │ ├── iar │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ └── libam_hal.a │ │ │ ├── libam_hal.ewd │ │ │ ├── libam_hal.ewp │ │ │ └── libam_hal.eww │ │ └── keil │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ └── libam_hal.lib │ │ │ ├── libam_hal.uvoptx │ │ │ └── libam_hal.uvprojx │ │ └── regs │ │ ├── am_reg.h │ │ ├── am_reg_base_addresses.h │ │ ├── am_reg_iomstr_cmd.h │ │ ├── am_reg_jedec.h │ │ ├── am_reg_m4.h │ │ ├── am_reg_macros.h │ │ └── am_reg_macros_asm.h └── utils │ ├── am_util.h │ ├── am_util_ble.c │ ├── am_util_ble.h │ ├── am_util_debug.c │ ├── am_util_debug.h │ ├── am_util_delay.c │ ├── am_util_delay.h │ ├── am_util_faultisr.c │ ├── am_util_id.c │ ├── am_util_id.h │ ├── am_util_regdump.c.old │ ├── am_util_regdump.h │ ├── am_util_stdio.c │ ├── am_util_stdio.h │ ├── am_util_string.c │ ├── am_util_string.h │ ├── am_util_time.c │ └── am_util_time.h ├── libs ├── buttons │ ├── buttons.c │ └── buttons.h ├── cartridge │ ├── cartridge.c │ ├── cartridge.h │ ├── reader.c │ └── reader.h ├── display │ ├── display.c │ └── display.h ├── emulator │ ├── checkpoint_emulator.h │ ├── emulator.c │ └── emulator.h ├── fram │ ├── fram.h │ ├── mspi.c │ └── mspi.h ├── jit │ ├── jit_checkpoint.c │ └── jit_checkpoint.h ├── memtracker │ ├── checkpoint_memtracker.c │ ├── checkpoint_memtracker.h │ ├── memtracker.c │ └── memtracker.h └── mpatch │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── bliss_allocator │ ├── README.md │ ├── bliss_allocator.c │ ├── bliss_allocator.h │ ├── bliss_allocator_cfg.h │ ├── bliss_allocator_debug_util.c │ ├── bliss_allocator_debug_util.h │ ├── bliss_allocator_nvm.c │ ├── bliss_allocator_nvm.h │ └── bliss_allocator_util.h │ ├── checkpoint │ ├── arch │ │ ├── README.md │ │ └── arm │ │ │ ├── barrier.h │ │ │ ├── checkpoint_arch.h │ │ │ ├── checkpoint_arch_cfg.h │ │ │ ├── checkpoint_setup.c │ │ │ ├── checkpoint_setup.h │ │ │ ├── checkpoint_setup_restore.h │ │ │ ├── checkpoint_util_mem.h │ │ │ ├── nvm.h │ │ │ ├── reg │ │ │ ├── checkpoint_registers.c │ │ │ ├── checkpoint_registers.h │ │ │ ├── checkpoint_registers_nvm.c │ │ │ └── checkpoint_svc.s │ │ │ └── stackpointer.h │ ├── bss │ │ ├── checkpoint_bss.c │ │ ├── checkpoint_bss.h │ │ └── checkpoint_bss_cfg.h │ ├── checkpoint.c │ ├── checkpoint.h │ ├── checkpoint_cfg.h │ ├── checkpoint_logical_clock.h │ ├── checkpoint_logical_clock_nvm.c │ ├── checkpoint_selector.h │ ├── code-id │ │ ├── code_id.c │ │ ├── code_id.h │ │ ├── code_id_nvm.c │ │ └── compile_time.h │ ├── data │ │ ├── checkpoint_data.c │ │ ├── checkpoint_data.h │ │ └── checkpoint_data_cfg.h │ ├── example_checkpoint_content.h │ └── stack │ │ ├── checkpoint_stack.c │ │ ├── checkpoint_stack.h │ │ ├── checkpoint_stack_cfg.h │ │ └── checkpoint_stack_nvm.c │ ├── mpatch │ ├── checkpoint_mpatch.c │ ├── checkpoint_mpatch.h │ ├── checkpoint_mpatch_cfg.h │ ├── mpatch.c │ ├── mpatch.h │ ├── mpatch_cfg.h │ ├── mpatch_nvm.c │ ├── mpatch_nvm.h │ └── mpatch_util.h │ └── test │ └── unit │ ├── CMakeLists.txt │ ├── bliss_allocator │ └── test_bliss_allocator.c │ ├── cmake │ └── CodeCoverage.cmake │ ├── mpatch │ └── test_mpatch.c │ ├── run-tests.sh │ ├── test_cmocka.c │ ├── testcommon.h │ └── util │ ├── asciitree.c │ └── asciitree.h ├── platforms ├── .gitkeep ├── gby-v1-0.c ├── gby-v1-0.h └── platform.h └── scripts ├── getEmulator.sh └── patches ├── gameboy_file-h.patch ├── gameboy_ub-c.patch ├── gameboy_ub-h.patch ├── rom.patch ├── z80_opcode-h.patch ├── z80_opcode_cb_func-h.patch ├── z80_opcode_func-h.patch ├── z80_opcode_goto-h.patch ├── z80_ub-c.patch └── z80_ub-h.patch /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/README.md -------------------------------------------------------------------------------- /doc-images/hw-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/hw-overview.png -------------------------------------------------------------------------------- /doc-images/intermittency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/intermittency.png -------------------------------------------------------------------------------- /doc-images/northwestern_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/northwestern_logo.jpg -------------------------------------------------------------------------------- /doc-images/system-engage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/system-engage.png -------------------------------------------------------------------------------- /doc-images/tudelft_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/tudelft_logo.png -------------------------------------------------------------------------------- /doc-images/youtube_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/doc-images/youtube_thumbnail.png -------------------------------------------------------------------------------- /enclosure/ENGAGE-Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-Bottom.stl -------------------------------------------------------------------------------- /enclosure/ENGAGE-Button.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-Button.stl -------------------------------------------------------------------------------- /enclosure/ENGAGE-DPad.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-DPad.stl -------------------------------------------------------------------------------- /enclosure/ENGAGE-LCD-Holder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-LCD-Holder.stl -------------------------------------------------------------------------------- /enclosure/ENGAGE-Small-Button.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-Small-Button.stl -------------------------------------------------------------------------------- /enclosure/ENGAGE-Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/enclosure/ENGAGE-Top.stl -------------------------------------------------------------------------------- /hardware/apollo-3-module/apollo-3-module-bill-of-materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/apollo-3-module-bill-of-materials.csv -------------------------------------------------------------------------------- /hardware/apollo-3-module/apollo3_module.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/apollo3_module.kicad_pcb -------------------------------------------------------------------------------- /hardware/apollo-3-module/apollo3_module.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/apollo3_module.pro -------------------------------------------------------------------------------- /hardware/apollo-3-module/apollo3_module.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/apollo3_module.sch -------------------------------------------------------------------------------- /hardware/apollo-3-module/gerbers/Apollo-3-module-v1-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/gerbers/Apollo-3-module-v1-1.zip -------------------------------------------------------------------------------- /hardware/apollo-3-module/schematic/apollo3_module.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/apollo-3-module/schematic/apollo3_module.pdf -------------------------------------------------------------------------------- /hardware/main-board/Display.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/Display.sch -------------------------------------------------------------------------------- /hardware/main-board/MCU.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/MCU.sch -------------------------------------------------------------------------------- /hardware/main-board/USB_PSU.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/USB_PSU.sch -------------------------------------------------------------------------------- /hardware/main-board/button_harv.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/button_harv.sch -------------------------------------------------------------------------------- /hardware/main-board/cartridge.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/cartridge.sch -------------------------------------------------------------------------------- /hardware/main-board/gerbers/main-board-v1-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/gerbers/main-board-v1-2.zip -------------------------------------------------------------------------------- /hardware/main-board/harvester.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/harvester.sch -------------------------------------------------------------------------------- /hardware/main-board/main-board-bill-of-materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/main-board-bill-of-materials.csv -------------------------------------------------------------------------------- /hardware/main-board/main-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/main-board.kicad_pcb -------------------------------------------------------------------------------- /hardware/main-board/main-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/main-board.pro -------------------------------------------------------------------------------- /hardware/main-board/main-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/main-board.sch -------------------------------------------------------------------------------- /hardware/main-board/schematic/main-board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/hardware/main-board/schematic/main-board.pdf -------------------------------------------------------------------------------- /software/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/CMakeLists.txt -------------------------------------------------------------------------------- /software/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-legal/copyright,-build/include,-readability/todo 2 | -------------------------------------------------------------------------------- /software/apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/CMakeLists.txt -------------------------------------------------------------------------------- /software/apps/checkpoint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/checkpoint/CMakeLists.txt -------------------------------------------------------------------------------- /software/apps/checkpoint/checkpoint_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/checkpoint/checkpoint_test.c -------------------------------------------------------------------------------- /software/apps/checkpoint/config/checkpoint_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/checkpoint/config/checkpoint_content.h -------------------------------------------------------------------------------- /software/apps/emulator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/emulator/CMakeLists.txt -------------------------------------------------------------------------------- /software/apps/emulator/config/checkpoint_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/emulator/config/checkpoint_content.h -------------------------------------------------------------------------------- /software/apps/emulator/main_emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/emulator/main_emulator.c -------------------------------------------------------------------------------- /software/apps/memtracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/memtracker/CMakeLists.txt -------------------------------------------------------------------------------- /software/apps/memtracker/main_memtracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/apps/memtracker/main_memtracker.c -------------------------------------------------------------------------------- /software/bin/checkpoint.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/bin/checkpoint.elf -------------------------------------------------------------------------------- /software/bin/emulator.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/bin/emulator.elf -------------------------------------------------------------------------------- /software/bin/memtracker.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/bin/memtracker.elf -------------------------------------------------------------------------------- /software/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/config/apollo-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/apollo-toolchain.cmake -------------------------------------------------------------------------------- /software/config/apollo3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/apollo3.ld -------------------------------------------------------------------------------- /software/config/emulator_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/emulator_settings.h -------------------------------------------------------------------------------- /software/config/exclude_checkpoint_bss.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/exclude_checkpoint_bss.ld -------------------------------------------------------------------------------- /software/config/exclude_checkpoint_data.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/exclude_checkpoint_data.ld -------------------------------------------------------------------------------- /software/config/startup_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/startup_gcc.c -------------------------------------------------------------------------------- /software/config/stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/stm32f7xx.h -------------------------------------------------------------------------------- /software/config/stm32f7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/config/stm32f7xx_hal.h -------------------------------------------------------------------------------- /software/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/arm_math.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/cmsis_version.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/core_cm4.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Include/mpu_armv7.h -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/arm_cortexM4l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/arm_cortexM4l_math.lib -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/arm_cortexM4lf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/arm_cortexM4lf_math.lib -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/iar_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/iar_cortexM4l_math.a -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/iar_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/iar_cortexM4lf_math.a -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/libarm_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/libarm_cortexM4l_math.a -------------------------------------------------------------------------------- /software/external/CMSIS/ARM/Lib/ARM/libarm_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/ARM/Lib/ARM/libarm_cortexM4lf_math.a -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/apollo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/apollo1.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/apollo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/apollo2.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/apollo3.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/apollo3p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/apollo3p.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/system_apollo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/system_apollo1.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/system_apollo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/system_apollo2.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/system_apollo3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/system_apollo3.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Include/system_apollo3p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Include/system_apollo3p.h -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/startup_apollo1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/startup_apollo1.s -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/startup_apollo2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/startup_apollo2.s -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/startup_apollo3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/startup_apollo3.s -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/startup_apollo3p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/startup_apollo3p.s -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/system_apollo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/system_apollo1.c -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/system_apollo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/system_apollo2.c -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/system_apollo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/system_apollo3.c -------------------------------------------------------------------------------- /software/external/CMSIS/AmbiqMicro/Source/system_apollo3p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/AmbiqMicro/Source/system_apollo3p.c -------------------------------------------------------------------------------- /software/external/CMSIS/version_cmsis_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/CMSIS/version_cmsis_info.txt -------------------------------------------------------------------------------- /software/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/README.md -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amdtpc/amdtp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amdtpc/amdtp_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amdtpc/amdtp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amdtpc/amdtp_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amdtps/amdtp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amdtps/amdtp_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amdtps/amdtp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amdtps/amdtp_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amota/amota_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amota/amota_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/amota/amota_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/amota/amota_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/ancs/ancs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/ancs/ancs_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/ancs/ancs_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/ancs/ancs_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/beaconscanner/beaconscanner_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/beaconscanner/beaconscanner_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/beaconscanner/beaconscanner_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/beaconscanner/beaconscanner_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/ibeacon/ibeacon_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/ibeacon/ibeacon_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/ibeacon/ibeacon_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/ibeacon/ibeacon_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/prodtest_datc/prodtest_datc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/prodtest_datc/prodtest_datc_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/prodtest_datc/prodtest_datc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/prodtest_datc/prodtest_datc_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/prodtest_dats/prodtest_dats_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/prodtest_dats/prodtest_dats_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/prodtest_dats/prodtest_dats_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/prodtest_dats/prodtest_dats_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/vole/voice_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/vole/voice_data.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/vole/vole_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/vole/vole_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/apps/vole/vole_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/apps/vole/vole_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/em9304/em9304_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/em9304/em9304_init.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/em9304/em9304_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/em9304/em9304_init.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/em9304/em9304_patches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/em9304/em9304_patches.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/em9304/em9304_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/em9304/em9304_patches.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/menu/ble_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/menu/ble_menu.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/menu/ble_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/menu/ble_menu.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtpcommon/amdtp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtpcommon/amdtp_common.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtpcommon/amdtp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtpcommon/amdtp_common.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtps/appl_amdtps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtps/appl_amdtps.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtps/appl_amdtps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtps/appl_amdtps.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtps/appl_gap_config_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtps/appl_gap_config_params.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtps/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtps/gatt_db.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amdtps/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amdtps/gatt_db.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amota/appl_amota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amota/appl_amota.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amota/appl_amota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amota/appl_amota.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amota/appl_gap_config_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amota/appl_gap_config_params.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amota/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amota/gatt_db.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/amota/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/amota/gatt_db.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/appl_ams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/appl_ams.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/appl_ams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/appl_ams.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/appl_ams_att_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/appl_ams_att_server.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/appl_ams_att_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/appl_ams_att_server.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/appl_gap_config_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/appl_gap_config_params.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/gatt_db.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ams/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ams/gatt_db.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/appl_ancs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/appl_ancs.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/appl_ancs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/appl_ancs.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/appl_ancs_att_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/appl_ancs_att_server.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/appl_ancs_att_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/appl_ancs_att_server.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/appl_gap_config_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/appl_gap_config_params.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/gatt_db.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ancs/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ancs/gatt_db.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/fcc_test/appl_fcc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/fcc_test/appl_fcc_test.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ibeacon/appl_gap_config_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ibeacon/appl_gap_config_params.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ibeacon/appl_ibeacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ibeacon/appl_ibeacon.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ibeacon/appl_ibeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ibeacon/appl_ibeacon.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ibeacon/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ibeacon/gatt_db.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/ibeacon/gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/ibeacon/gatt_db.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profile_appl/txpower_ctrl/appl_txpower_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profile_appl/txpower_ctrl/appl_txpower_ctrl.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtpc/amdtpc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtpc/amdtpc_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtpc/amdtpc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtpc/amdtpc_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtpcommon/amdtp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtpcommon/amdtp_common.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtpcommon/amdtp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtpcommon/amdtp_common.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtps/amdtps_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtps/amdtps_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amdtps/amdtps_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amdtps/amdtps_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amota/amotas_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amota/amotas_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/amota/amotas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/amota/amotas_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/ancc/ancc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/ancc/ancc_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/ancc/ancc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/ancc/ancc_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/vole/voles_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/vole/voles_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/vole/voles_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/vole/voles_main.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/am_app_KWD_AMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/am_app_KWD_AMA.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/gcc/libama.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/gcc/libama.a -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/iar/libama.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/iar/libama.a -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/keil/libama.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/keil/libama.lib -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/accessories.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/accessories.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/calling.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/calling.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/central.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/central.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/common.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/common.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/device.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/device.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/media.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/media.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_common.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_decode.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/pb_encode.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/speech.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/speech.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/state.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/state.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/system.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/system.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/transport.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/ama/pb/transport.pb.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/opus/ae_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/opus/ae_api.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/opus/gcc/libopus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/opus/gcc/libopus.a -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/opus/iar/libopus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/opus/iar/libopus.a -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/opus/keil/libopus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/opus/keil/libopus.lib -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/sbc/sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/sbc/sbc.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/codec/sbc/sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/codec/sbc/sbc.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/vole_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/vole_common.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/profiles/volecommon/vole_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/profiles/volecommon/vole_common.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amdtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amdtp.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amdtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amdtp.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amotas.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amotas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amotas.h -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amvole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amvole.c -------------------------------------------------------------------------------- /software/external/ambiq_ble/services/svc_amvole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/ambiq_ble/services/svc_amvole.h -------------------------------------------------------------------------------- /software/external/mcu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/Makefile -------------------------------------------------------------------------------- /software/external/mcu/am_sdk_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/am_sdk_version.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/Makefile -------------------------------------------------------------------------------- /software/external/mcu/apollo3/am_mcu_apollo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/am_mcu_apollo.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/Makefile -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_adc.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_adc.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble_patch.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble_patch.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble_patch_b0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble_patch_b0.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ble_patch_b0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ble_patch_b0.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_burst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_burst.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_burst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_burst.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_cachectrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_cachectrl.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_cachectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_cachectrl.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_clkgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_clkgen.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_clkgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_clkgen.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_cmdq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_cmdq.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_cmdq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_cmdq.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ctimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ctimer.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ctimer.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_debug.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_debug.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_flash.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_flash.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_global.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_global.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_gpio.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_gpio.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_interrupt.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_interrupt.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_iom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_iom.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_iom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_iom.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ios.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_ios.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_itm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_itm.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_itm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_itm.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_mcuctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_mcuctrl.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_mcuctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_mcuctrl.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_mspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_mspi.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_mspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_mspi.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pdm.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pdm.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pin.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pwrctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pwrctrl.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pwrctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pwrctrl.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_pwrctrl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_pwrctrl_internal.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_queue.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_queue.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_reset.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_reset.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_rtc.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_rtc.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_scard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_scard.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_scard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_scard.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_secure_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_secure_ota.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_secure_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_secure_ota.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_security.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_security.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_status.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_stimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_stimer.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_stimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_stimer.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_sysctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_sysctrl.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_sysctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_sysctrl.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_systick.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_systick.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_tpiu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_tpiu.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_tpiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_tpiu.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_uart.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_uart.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_wdt.c -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/am_hal_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/am_hal_wdt.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/gcc/Makefile -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/gcc/bin/libam_hal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/gcc/bin/libam_hal.a -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/iar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/iar/Makefile -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/iar/bin/libam_hal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/iar/bin/libam_hal.a -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/iar/libam_hal.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/iar/libam_hal.ewd -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/iar/libam_hal.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/iar/libam_hal.ewp -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/iar/libam_hal.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/iar/libam_hal.eww -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/keil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/keil/Makefile -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/keil/bin/libam_hal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/keil/bin/libam_hal.lib -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/keil/libam_hal.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/keil/libam_hal.uvoptx -------------------------------------------------------------------------------- /software/external/mcu/apollo3/hal/keil/libam_hal.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/hal/keil/libam_hal.uvprojx -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_base_addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_base_addresses.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_iomstr_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_iomstr_cmd.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_jedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_jedec.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_m4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_m4.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_macros.h -------------------------------------------------------------------------------- /software/external/mcu/apollo3/regs/am_reg_macros_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/mcu/apollo3/regs/am_reg_macros_asm.h -------------------------------------------------------------------------------- /software/external/utils/am_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util.h -------------------------------------------------------------------------------- /software/external/utils/am_util_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_ble.c -------------------------------------------------------------------------------- /software/external/utils/am_util_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_ble.h -------------------------------------------------------------------------------- /software/external/utils/am_util_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_debug.c -------------------------------------------------------------------------------- /software/external/utils/am_util_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_debug.h -------------------------------------------------------------------------------- /software/external/utils/am_util_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_delay.c -------------------------------------------------------------------------------- /software/external/utils/am_util_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_delay.h -------------------------------------------------------------------------------- /software/external/utils/am_util_faultisr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_faultisr.c -------------------------------------------------------------------------------- /software/external/utils/am_util_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_id.c -------------------------------------------------------------------------------- /software/external/utils/am_util_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_id.h -------------------------------------------------------------------------------- /software/external/utils/am_util_regdump.c.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_regdump.c.old -------------------------------------------------------------------------------- /software/external/utils/am_util_regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_regdump.h -------------------------------------------------------------------------------- /software/external/utils/am_util_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_stdio.c -------------------------------------------------------------------------------- /software/external/utils/am_util_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_stdio.h -------------------------------------------------------------------------------- /software/external/utils/am_util_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_string.c -------------------------------------------------------------------------------- /software/external/utils/am_util_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_string.h -------------------------------------------------------------------------------- /software/external/utils/am_util_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_time.c -------------------------------------------------------------------------------- /software/external/utils/am_util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/external/utils/am_util_time.h -------------------------------------------------------------------------------- /software/libs/buttons/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/buttons/buttons.c -------------------------------------------------------------------------------- /software/libs/buttons/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/buttons/buttons.h -------------------------------------------------------------------------------- /software/libs/cartridge/cartridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/cartridge/cartridge.c -------------------------------------------------------------------------------- /software/libs/cartridge/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/cartridge/cartridge.h -------------------------------------------------------------------------------- /software/libs/cartridge/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/cartridge/reader.c -------------------------------------------------------------------------------- /software/libs/cartridge/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/cartridge/reader.h -------------------------------------------------------------------------------- /software/libs/display/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/display/display.c -------------------------------------------------------------------------------- /software/libs/display/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/display/display.h -------------------------------------------------------------------------------- /software/libs/emulator/checkpoint_emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/emulator/checkpoint_emulator.h -------------------------------------------------------------------------------- /software/libs/emulator/emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/emulator/emulator.c -------------------------------------------------------------------------------- /software/libs/emulator/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/emulator/emulator.h -------------------------------------------------------------------------------- /software/libs/fram/fram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/fram/fram.h -------------------------------------------------------------------------------- /software/libs/fram/mspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/fram/mspi.c -------------------------------------------------------------------------------- /software/libs/fram/mspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/fram/mspi.h -------------------------------------------------------------------------------- /software/libs/jit/jit_checkpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/jit/jit_checkpoint.c -------------------------------------------------------------------------------- /software/libs/jit/jit_checkpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/jit/jit_checkpoint.h -------------------------------------------------------------------------------- /software/libs/memtracker/checkpoint_memtracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/memtracker/checkpoint_memtracker.c -------------------------------------------------------------------------------- /software/libs/memtracker/checkpoint_memtracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/memtracker/checkpoint_memtracker.h -------------------------------------------------------------------------------- /software/libs/memtracker/memtracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/memtracker/memtracker.c -------------------------------------------------------------------------------- /software/libs/memtracker/memtracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/memtracker/memtracker.h -------------------------------------------------------------------------------- /software/libs/mpatch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/.gitignore -------------------------------------------------------------------------------- /software/libs/mpatch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/CMakeLists.txt -------------------------------------------------------------------------------- /software/libs/mpatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/README.md -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/README.md -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator.c -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator.h -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_debug_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_debug_util.c -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_debug_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_debug_util.h -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_nvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_nvm.h -------------------------------------------------------------------------------- /software/libs/mpatch/bliss_allocator/bliss_allocator_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/bliss_allocator/bliss_allocator_util.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/README.md -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/barrier.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_arch.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_arch_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_arch_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup_restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_setup_restore.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/checkpoint_util_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/checkpoint_util_mem.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/nvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/nvm.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_registers_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_svc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/reg/checkpoint_svc.s -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/arch/arm/stackpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/arch/arm/stackpointer.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/bss/checkpoint_bss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/bss/checkpoint_bss.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/bss/checkpoint_bss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/bss/checkpoint_bss.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/bss/checkpoint_bss_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/bss/checkpoint_bss_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint_logical_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint_logical_clock.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint_logical_clock_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint_logical_clock_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/checkpoint_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/checkpoint_selector.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/code-id/code_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/code-id/code_id.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/code-id/code_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/code-id/code_id.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/code-id/code_id_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/code-id/code_id_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/code-id/compile_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/code-id/compile_time.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/data/checkpoint_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/data/checkpoint_data.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/data/checkpoint_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/data/checkpoint_data.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/data/checkpoint_data_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/data/checkpoint_data_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/example_checkpoint_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/example_checkpoint_content.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/stack/checkpoint_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/stack/checkpoint_stack.c -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/stack/checkpoint_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/stack/checkpoint_stack.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/stack/checkpoint_stack_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/stack/checkpoint_stack_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/checkpoint/stack/checkpoint_stack_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/checkpoint/stack/checkpoint_stack_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/checkpoint_mpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/checkpoint_mpatch.c -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/checkpoint_mpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/checkpoint_mpatch.h -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/checkpoint_mpatch_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/checkpoint_mpatch_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch.c -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch.h -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch_cfg.h -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch_nvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch_nvm.c -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch_nvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch_nvm.h -------------------------------------------------------------------------------- /software/libs/mpatch/mpatch/mpatch_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/mpatch/mpatch_util.h -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/bliss_allocator/test_bliss_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/bliss_allocator/test_bliss_allocator.c -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/mpatch/test_mpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/mpatch/test_mpatch.c -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/run-tests.sh -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/test_cmocka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/test_cmocka.c -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/testcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/testcommon.h -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/util/asciitree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/util/asciitree.c -------------------------------------------------------------------------------- /software/libs/mpatch/test/unit/util/asciitree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/libs/mpatch/test/unit/util/asciitree.h -------------------------------------------------------------------------------- /software/platforms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/platforms/gby-v1-0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/platforms/gby-v1-0.c -------------------------------------------------------------------------------- /software/platforms/gby-v1-0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/platforms/gby-v1-0.h -------------------------------------------------------------------------------- /software/platforms/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/platforms/platform.h -------------------------------------------------------------------------------- /software/scripts/getEmulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/getEmulator.sh -------------------------------------------------------------------------------- /software/scripts/patches/gameboy_file-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/gameboy_file-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/gameboy_ub-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/gameboy_ub-c.patch -------------------------------------------------------------------------------- /software/scripts/patches/gameboy_ub-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/gameboy_ub-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/rom.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/rom.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_opcode-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_opcode-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_opcode_cb_func-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_opcode_cb_func-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_opcode_func-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_opcode_func-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_opcode_goto-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_opcode_goto-h.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_ub-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_ub-c.patch -------------------------------------------------------------------------------- /software/scripts/patches/z80_ub-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUDSSL/ENGAGE/HEAD/software/scripts/patches/z80_ub-h.patch --------------------------------------------------------------------------------