├── .gitignore ├── LICENSE ├── Readme.md ├── application ├── KXTJ3_testing │ ├── Makefile │ ├── kxtj_testing_ble.c │ ├── kxtj_testing_ble.h │ ├── linker │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── LSM6D_testing │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── lsm_testing_ble.c │ ├── lsm_testing_ble.h │ └── main.c ├── Makefile.common ├── ble_testing │ ├── Makefile │ ├── led_sequences │ │ ├── detect_pulse.txt │ │ ├── detect_sync.txt │ │ ├── detect_window.txt │ │ ├── dual_freq.txt │ │ ├── green_pulse.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_pulse.txt │ │ ├── orange_wave.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── sensebe_ble.c │ └── sensebe_ble.h ├── bluey_demo │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── defgroup_appln.txt ├── gps │ ├── Makefile │ ├── linker │ │ ├── blank_nrf51422_xxac.ld │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s130_nrf51422_xxac.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── hello_world_blinky │ ├── Makefile │ ├── linker │ │ ├── blank_nrf51422_xxac.ld │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s130_nrf51422_xxac.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── hello_world_rtt │ ├── Makefile │ ├── linker │ │ ├── blank_nrf51422_xxac.ld │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s130_nrf51422_xxac.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── lrf_gateway │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── lrf_gsm_node │ ├── Makefile │ ├── isr_manager.c │ ├── isr_manager.h │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── lrf_node_ble.c │ ├── lrf_node_ble.h │ ├── lrf_node_rf.c │ ├── lrf_node_rf.h │ ├── main.c │ └── sys_config.h ├── lrf_node │ ├── Makefile │ ├── doc │ │ ├── app_flow.dot │ │ └── app_flow.png │ ├── isr_manager.c │ ├── isr_manager.h │ ├── led_sequences │ │ ├── detect_pulse.txt │ │ ├── detect_sync.txt │ │ ├── detect_window.txt │ │ ├── dual_freq.txt │ │ ├── green_pulse.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_pulse.txt │ │ ├── orange_wave.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── lrf_node_ble.c │ ├── lrf_node_ble.h │ ├── lrf_node_rf.c │ ├── lrf_node_rf.h │ ├── main.c │ └── sys_config.h ├── product_id_extract │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── product_id_gen │ ├── Makefile │ ├── board_no.h │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── radio_rx │ └── linker │ │ └── s112_nrf52810_xxaa.ld ├── rf_data_rx │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── pin_trace.h │ ├── rf_rx_ble.c │ └── rf_rx_ble.h ├── rf_data_tx │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ └── pin_trace.h ├── rf_data_tx_rx │ ├── MCU_Interface.h │ ├── S2LP_Library │ │ ├── Inc │ │ │ ├── MCU_Interface_template.h │ │ │ ├── S2LP_Commands.h │ │ │ ├── S2LP_Config.h │ │ │ ├── S2LP_Csma.h │ │ │ ├── S2LP_Fifo.h │ │ │ ├── S2LP_General.h │ │ │ ├── S2LP_Gpio.h │ │ │ ├── S2LP_PacketHandler.h │ │ │ ├── S2LP_PktBasic.h │ │ │ ├── S2LP_PktStack.h │ │ │ ├── S2LP_PktWMbus.h │ │ │ ├── S2LP_Qi.h │ │ │ ├── S2LP_Radio.h │ │ │ ├── S2LP_Regs.h │ │ │ ├── S2LP_Timer.h │ │ │ ├── S2LP_Timer_ex.h │ │ │ ├── S2LP_Types.h │ │ │ └── inc_all.h │ │ └── Src │ │ │ ├── S2LP_Commands.c │ │ │ ├── S2LP_Csma.c │ │ │ ├── S2LP_Fifo.c │ │ │ ├── S2LP_General.c │ │ │ ├── S2LP_Gpio.c │ │ │ ├── S2LP_PacketHandler.c │ │ │ ├── S2LP_PktBasic.c │ │ │ ├── S2LP_PktStack.c │ │ │ ├── S2LP_PktWMbus.c │ │ │ ├── S2LP_Qi.c │ │ │ ├── S2LP_Radio.c │ │ │ ├── S2LP_Timer.c │ │ │ ├── S2LP_Timer_ex.c │ │ │ └── S2LP_Types.c │ ├── SDK_BasicGeneric_A.c │ ├── SDK_BasicGeneric_B.c │ ├── SDK_Configuration_Common.h │ ├── SDK_EVAL_Config.h │ ├── SDK_EVAL_Spi_Driver.c │ ├── STM32_Nucleo │ │ ├── Inc │ │ │ ├── SDK_EVAL_Button.h │ │ │ ├── SDK_EVAL_Com.h │ │ │ ├── SDK_EVAL_EEPROM.h │ │ │ ├── SDK_EVAL_Gpio.h │ │ │ └── SDK_EVAL_Led.h │ │ └── Src │ │ │ ├── SDK_EVAL_Button.c │ │ │ ├── SDK_EVAL_Com_UART.c │ │ │ ├── SDK_EVAL_Com_UART_DMA_TX.c │ │ │ ├── SDK_EVAL_Config.c │ │ │ ├── SDK_EVAL_EEPROM.c │ │ │ ├── SDK_EVAL_Gpio.c │ │ │ └── SDK_EVAL_Led.c │ ├── STM32_Nucleo_S2LP_Util │ │ ├── Inc │ │ │ └── S2LP_SDK_Util.h │ │ └── Src │ │ │ └── S2LP_SDK_Util.c │ └── cube_hal.h ├── saadc_logger │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── sense_pir │ ├── Makefile │ ├── Readme.md │ ├── doc │ │ ├── app_flow.dot │ │ ├── app_flow.png │ │ ├── data_flow.dot │ │ └── data_flow.png │ ├── isr_manager.c │ ├── isr_manager.h │ ├── led_sequences │ │ ├── dual_freq.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_wave.txt │ │ ├── pir_pulse.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── sensepi_ble.c │ ├── sensepi_ble.h │ ├── sensepi_func.c │ ├── sensepi_func.h │ ├── sensepi_store_config.c │ ├── sensepi_store_config.h │ └── sys_config.h ├── sensebe_rx │ ├── Makefile │ ├── isr_manager.c │ ├── isr_manager.h │ ├── led_sequences │ │ ├── detect_pulse.txt │ │ ├── detect_sync.txt │ │ ├── detect_window.txt │ │ ├── dual_freq.txt │ │ ├── green_pulse.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_pulse.txt │ │ ├── orange_wave.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── sensebe_rx_mod.c │ ├── sensebe_rx_mod.h │ ├── sensebe_store_config.c │ ├── sensebe_store_config.h │ ├── senseberx_ble.c │ ├── senseberx_ble.h │ └── sys_config.h ├── sensebe_tx │ ├── Makefile │ ├── isr_manager.c │ ├── isr_manager.h │ ├── led_sequences │ │ ├── detect_pulse.txt │ │ ├── detect_sync.txt │ │ ├── detect_window.txt │ │ ├── dual_freq.txt │ │ ├── green_pulse.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_pulse.txt │ │ ├── orange_wave.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── sensebe_store_config.c │ ├── sensebe_store_config.h │ ├── sensebe_tx_mod.c │ ├── sensebe_tx_mod.h │ ├── sensebetx_ble.c │ ├── sensebetx_ble.h │ └── sys_config.h ├── sensebe_tx_rx │ ├── Makefile │ ├── isr_manager.c │ ├── isr_manager.h │ ├── led_sequences │ │ ├── detect_pulse.txt │ │ ├── detect_sync.txt │ │ ├── detect_window.txt │ │ ├── dual_freq.txt │ │ ├── green_pulse.txt │ │ ├── green_wave.txt │ │ ├── led_seq.c │ │ ├── led_seq.h │ │ ├── orange_pulse.txt │ │ ├── orange_wave.txt │ │ ├── ramp_offset.txt │ │ ├── red_pulse.txt │ │ └── separate_values.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ ├── main.c │ ├── sensebe_ble.c │ ├── sensebe_ble.h │ ├── sensebe_store_config.c │ ├── sensebe_store_config.h │ ├── sensebe_tx_rx_mod.c │ ├── sensebe_tx_rx_mod.h │ └── sys_config.h ├── sim800_testing │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52840_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── simple_statemachine │ ├── Makefile │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── sys_lvl_testing │ ├── Makefile │ ├── file_serial_interface_test.py │ ├── linker │ │ ├── blank_nrf52810_xxaa.ld │ │ ├── blank_nrf52832_xxaa.ld │ │ ├── s112_nrf52810_xxaa.ld │ │ ├── s112_nrf52832_xxaa.ld │ │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── template_isr_manager.c ├── template_isr_manager.h └── testing_firmware_v1 │ ├── Makefile │ ├── hw_testing_app.c │ ├── hw_testing_app.h │ ├── linker │ ├── blank_nrf51422_xxac.ld │ ├── blank_nrf52810_xxaa.ld │ ├── blank_nrf52832_xxaa.ld │ ├── gcc_startup_nrf51.S │ ├── gcc_startup_nrf52.S │ ├── gcc_startup_nrf52810.S │ ├── gcc_startup_nrf52840.S │ ├── nrf52810_xxaa.ld │ ├── nrf52_common.ld │ ├── nrf52_xxaa.ld │ ├── nrf5x_common.ld │ ├── s130_nrf51422_xxac.ld │ └── s132_nrf52832_xxaa.ld │ └── main.c ├── codebase ├── AT_lib │ ├── AT_proc.c │ ├── AT_proc.h │ ├── Makefile.AT │ ├── defgroup_peripheral_modules.txt │ ├── sim800_cmd_id.h │ ├── sim800_oper.c │ └── sim800_oper.h ├── cmsis │ ├── dsp │ │ ├── .gitignore │ │ ├── libarm_cortexM4l_math.a │ │ ├── libarm_cortexM4lf_math.a │ │ └── license.txt │ └── include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h ├── defgroup_codebase.txt ├── hal │ ├── defgroup_hal.txt │ ├── hal_clocks.c │ ├── hal_clocks.h │ ├── hal_gpio.h │ ├── hal_nop_delay.h │ ├── hal_nvmc.c │ ├── hal_nvmc.h │ ├── hal_pin_analog_input.h │ ├── hal_ppi.c │ ├── hal_ppi.h │ ├── hal_pwm.c │ ├── hal_pwm.h │ ├── hal_radio.c │ ├── hal_radio.h │ ├── hal_saadc.c │ ├── hal_saadc.h │ ├── hal_spim.c │ ├── hal_spim.h │ ├── hal_twim.c │ ├── hal_twim.h │ ├── hal_uart.c │ ├── hal_uart.h │ ├── hal_uarte.c │ ├── hal_uarte.h │ ├── hal_wdt.c │ └── hal_wdt.h ├── nrf_core │ ├── compiler_abstraction.h │ ├── gcc_startup_nrf51.S │ ├── gcc_startup_nrf52.S │ ├── gcc_startup_nrf52810.S │ ├── gcc_startup_nrf52840.S │ ├── nrf.h │ ├── nrf51.h │ ├── nrf51.svd │ ├── nrf51422_peripherals.h │ ├── nrf51801_peripherals.h │ ├── nrf51801_xxab.ld │ ├── nrf51802_peripherals.h │ ├── nrf51822_peripherals.h │ ├── nrf51824_peripherals.h │ ├── nrf51_bitfields.h │ ├── nrf51_common.ld │ ├── nrf51_deprecated.h │ ├── nrf51_peripherals.h │ ├── nrf51_to_nrf52.h │ ├── nrf51_to_nrf52810.h │ ├── nrf51_to_nrf52840.h │ ├── nrf51_xxaa.ld │ ├── nrf51_xxab.ld │ ├── nrf51_xxac.ld │ ├── nrf52.h │ ├── nrf52.svd │ ├── nrf52810.h │ ├── nrf52810.svd │ ├── nrf52810_bitfields.h │ ├── nrf52810_peripherals.h │ ├── nrf52810_xxaa.ld │ ├── nrf52832_peripherals.h │ ├── nrf52832_xxab.ld │ ├── nrf52840.h │ ├── nrf52840.svd │ ├── nrf52840_bitfields.h │ ├── nrf52840_peripherals.h │ ├── nrf52840_xxaa.ld │ ├── nrf52_bitfields.h │ ├── nrf52_common.ld │ ├── nrf52_name_change.h │ ├── nrf52_to_nrf52810.h │ ├── nrf52_to_nrf52840.h │ ├── nrf52_xxaa.ld │ ├── nrf5x_common.ld │ ├── nrf_common.ld │ ├── nrf_peripherals.h │ ├── startup_config.h │ ├── system_nrf51.c │ ├── system_nrf51.h │ ├── system_nrf51422.c │ ├── system_nrf52.c │ ├── system_nrf52.h │ ├── system_nrf52810.c │ ├── system_nrf52810.h │ ├── system_nrf52840.c │ └── system_nrf52840.h ├── peripheral_modules │ ├── LSM6DS3.c │ ├── LSM6DS3.h │ ├── aa_aaa_battery_check.h │ ├── aux_clk.c │ ├── aux_clk.h │ ├── ble_adv.c │ ├── ble_adv.h │ ├── button_ui.c │ ├── button_ui.h │ ├── byte_frame.c │ ├── byte_frame.h │ ├── cam_trigger.c │ ├── cam_trigger.h │ ├── defgroup_peripheral_modules.txt │ ├── device_tick.c │ ├── device_tick.h │ ├── gpio_level_handler.c │ ├── gpio_level_handler.h │ ├── gps_mod.c │ ├── gps_mod.h │ ├── led_sense.c │ ├── led_sense.h │ ├── led_ui.c │ ├── led_ui.h │ ├── log.h │ ├── mcp4012_x.c │ ├── mcp4012_x.h │ ├── ms_timer.c │ ├── ms_timer.h │ ├── nvm_logger.c │ ├── nvm_logger.h │ ├── out_pattern_gen.c │ ├── out_pattern_gen.h │ ├── pir_sense.c │ ├── pir_sense.h │ ├── profiler_timer.c │ ├── profiler_timer.h │ ├── radio_trigger.c │ ├── radio_trigger.h │ ├── random_num.c │ ├── random_num.h │ ├── simple_adc.c │ ├── simple_adc.h │ ├── simple_pwm.c │ ├── simple_pwm.h │ ├── slot_manage.c │ ├── slot_manage.h │ ├── time_tracker.c │ ├── time_tracker.h │ ├── tinyprintf.c │ ├── tinyprintf.h │ ├── tssp_detect.c │ ├── tssp_detect.h │ ├── tssp_ir_tx.c │ ├── tssp_ir_tx.h │ ├── uart_printf.c │ ├── uart_printf.h │ ├── us_timer.c │ └── us_timer.h ├── rf_lib │ ├── rf_comm.h │ ├── rf_spi_hw.c │ ├── rf_spi_hw.h │ └── ti_radio_lib │ │ ├── cc112x_def.h │ │ ├── rf_comm.c │ │ ├── spi_rf_nrf52.c │ │ └── spi_rf_nrf52.h ├── sd_assist │ ├── app_error.c │ ├── app_error.h │ ├── defgroup_util.txt │ ├── evt_sd_handler.c │ └── evt_sd_handler.h ├── segger_rtt │ ├── SEGGER_RTT.c │ ├── SEGGER_RTT.h │ ├── SEGGER_RTT_Conf.h │ ├── SEGGER_RTT_Syscalls_GCC.c │ └── SEGGER_RTT_printf.c ├── ti_radio_lib │ ├── cc1101_drv │ │ ├── cc1101_def.h │ │ ├── cc1101_drv.c │ │ └── cc1101_utils.c │ ├── cc112x_drv │ │ ├── cc112x_def.h │ │ ├── cc112x_drv.c │ │ └── cc112x_utils.c │ ├── cc1190_drv │ │ ├── cc1190_drv.c │ │ └── cc1190_drv.h │ ├── cc1x_utils.h │ ├── hal_spi_rf.c │ ├── hal_spi_rf.h │ ├── hal_spi_rf_exp430g2.h │ ├── hal_spi_rf_exp5529.h │ ├── hal_spi_rf_trxeb.h │ ├── radio_drv.h │ └── spi_rf_nrf52.h └── util │ ├── CBUF.h │ ├── common_util.h │ ├── defgroup_util.txt │ ├── dev_id_fw_ver.c │ ├── dev_id_fw_ver.h │ ├── irq_msg_util.c │ ├── irq_msg_util.h │ ├── minmea.c │ ├── minmea.h │ ├── nrf_assert.c │ ├── nrf_assert.h │ ├── nrf_util.c │ └── nrf_util.h ├── doc ├── .netbeans.zip ├── Appiko.doxyfile ├── DoxygenLayout.xml ├── SDK_changelog.md ├── firmware_update.md ├── firmware_update_dev.md ├── firmware_update_user.md ├── header.html ├── installations.md └── main_page.md ├── platform ├── Makefile.board_bluey_1v1 ├── Makefile.board_detect_rev1 ├── Makefile.board_hackable ├── Makefile.board_pca10028 ├── Makefile.board_pca10040 ├── Makefile.board_sensebe_rev1 ├── Makefile.board_sensebe_rev3 ├── Makefile.board_sensebe_rx_rev1 ├── Makefile.board_sensebe_rx_rev2 ├── Makefile.board_senseberx_rev3 ├── Makefile.board_sensebetx_rev3 ├── Makefile.board_senseble_rev1 ├── Makefile.board_senseele_pcb_rev2 ├── Makefile.board_sensepi_rev2 ├── Makefile.board_sensepi_rev3 ├── Makefile.board_sensepi_rev4 ├── Makefile.board_sensepi_rev5 ├── bluey_1v1.h ├── boards.h ├── defgroup_platform.txt ├── detect_rev1.h ├── hackable.h ├── pca10028.h ├── pca10040.h ├── sensebe_rev1.h ├── sensebe_rev3.h ├── sensebe_rx_rev1.h ├── sensebe_rx_rev2.h ├── senseberx_rev3.h ├── sensebetx_rev3.h ├── senseble_rev1.h ├── senseele_pcb_rev2.h ├── sensepi_rev2.h ├── sensepi_rev3.h ├── sensepi_rev4.h └── sensepi_rev5.h ├── release ├── boards_lookup ├── bootloader_lookup ├── release_script.sh └── sd_lookup └── utils └── rtt_logger.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/Readme.md -------------------------------------------------------------------------------- /application/KXTJ3_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/Makefile -------------------------------------------------------------------------------- /application/KXTJ3_testing/kxtj_testing_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/kxtj_testing_ble.c -------------------------------------------------------------------------------- /application/KXTJ3_testing/kxtj_testing_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/kxtj_testing_ble.h -------------------------------------------------------------------------------- /application/KXTJ3_testing/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/KXTJ3_testing/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/KXTJ3_testing/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/KXTJ3_testing/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/KXTJ3_testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/KXTJ3_testing/main.c -------------------------------------------------------------------------------- /application/LSM6D_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/Makefile -------------------------------------------------------------------------------- /application/LSM6D_testing/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/LSM6D_testing/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/LSM6D_testing/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/LSM6D_testing/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/LSM6D_testing/lsm_testing_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/lsm_testing_ble.c -------------------------------------------------------------------------------- /application/LSM6D_testing/lsm_testing_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/lsm_testing_ble.h -------------------------------------------------------------------------------- /application/LSM6D_testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/LSM6D_testing/main.c -------------------------------------------------------------------------------- /application/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/Makefile.common -------------------------------------------------------------------------------- /application/ble_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/Makefile -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/detect_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/detect_pulse.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/detect_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/detect_sync.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/detect_window.txt: -------------------------------------------------------------------------------- 1 | 0 0; 2 | 0 500; -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/green_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/green_pulse.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/orange_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/orange_pulse.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/ble_testing/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/ble_testing/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/ble_testing/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/ble_testing/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/ble_testing/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/ble_testing/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/ble_testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/main.c -------------------------------------------------------------------------------- /application/ble_testing/sensebe_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/sensebe_ble.c -------------------------------------------------------------------------------- /application/ble_testing/sensebe_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/ble_testing/sensebe_ble.h -------------------------------------------------------------------------------- /application/bluey_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/bluey_demo/Makefile -------------------------------------------------------------------------------- /application/bluey_demo/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/bluey_demo/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/bluey_demo/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/bluey_demo/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/bluey_demo/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/bluey_demo/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/bluey_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/bluey_demo/main.c -------------------------------------------------------------------------------- /application/defgroup_appln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/defgroup_appln.txt -------------------------------------------------------------------------------- /application/gps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/Makefile -------------------------------------------------------------------------------- /application/gps/linker/blank_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/blank_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/gps/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/gps/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/gps/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/gps/linker/s130_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/s130_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/gps/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/gps/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/gps/main.c -------------------------------------------------------------------------------- /application/hello_world_blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/Makefile -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/blank_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/blank_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/s130_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/s130_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_blinky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_blinky/main.c -------------------------------------------------------------------------------- /application/hello_world_rtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/Makefile -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/blank_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/blank_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/s130_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/s130_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/hello_world_rtt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/hello_world_rtt/main.c -------------------------------------------------------------------------------- /application/lrf_gateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/Makefile -------------------------------------------------------------------------------- /application/lrf_gateway/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gateway/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gateway/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gateway/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gateway/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gateway/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gateway/main.c -------------------------------------------------------------------------------- /application/lrf_gsm_node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/Makefile -------------------------------------------------------------------------------- /application/lrf_gsm_node/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/isr_manager.c -------------------------------------------------------------------------------- /application/lrf_gsm_node/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/isr_manager.h -------------------------------------------------------------------------------- /application/lrf_gsm_node/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gsm_node/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gsm_node/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gsm_node/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_gsm_node/lrf_node_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/lrf_node_ble.c -------------------------------------------------------------------------------- /application/lrf_gsm_node/lrf_node_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/lrf_node_ble.h -------------------------------------------------------------------------------- /application/lrf_gsm_node/lrf_node_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/lrf_node_rf.c -------------------------------------------------------------------------------- /application/lrf_gsm_node/lrf_node_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/lrf_node_rf.h -------------------------------------------------------------------------------- /application/lrf_gsm_node/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/main.c -------------------------------------------------------------------------------- /application/lrf_gsm_node/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_gsm_node/sys_config.h -------------------------------------------------------------------------------- /application/lrf_node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/Makefile -------------------------------------------------------------------------------- /application/lrf_node/doc/app_flow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/doc/app_flow.dot -------------------------------------------------------------------------------- /application/lrf_node/doc/app_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/doc/app_flow.png -------------------------------------------------------------------------------- /application/lrf_node/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/isr_manager.c -------------------------------------------------------------------------------- /application/lrf_node/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/isr_manager.h -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/detect_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/detect_pulse.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/detect_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/detect_sync.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/detect_window.txt: -------------------------------------------------------------------------------- 1 | 0 0; 2 | 0 500; -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/green_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/green_pulse.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/orange_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/orange_pulse.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/lrf_node/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/lrf_node/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_node/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_node/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_node/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/lrf_node/lrf_node_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/lrf_node_ble.c -------------------------------------------------------------------------------- /application/lrf_node/lrf_node_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/lrf_node_ble.h -------------------------------------------------------------------------------- /application/lrf_node/lrf_node_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/lrf_node_rf.c -------------------------------------------------------------------------------- /application/lrf_node/lrf_node_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/lrf_node_rf.h -------------------------------------------------------------------------------- /application/lrf_node/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/main.c -------------------------------------------------------------------------------- /application/lrf_node/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/lrf_node/sys_config.h -------------------------------------------------------------------------------- /application/product_id_extract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/Makefile -------------------------------------------------------------------------------- /application/product_id_extract/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_extract/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_extract/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_extract/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_extract/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_extract/main.c -------------------------------------------------------------------------------- /application/product_id_gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/Makefile -------------------------------------------------------------------------------- /application/product_id_gen/board_no.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/board_no.h -------------------------------------------------------------------------------- /application/product_id_gen/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_gen/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_gen/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_gen/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/product_id_gen/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/product_id_gen/main.c -------------------------------------------------------------------------------- /application/radio_rx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/radio_rx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/Makefile -------------------------------------------------------------------------------- /application/rf_data_rx/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_rx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_rx/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_rx/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_rx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/main.c -------------------------------------------------------------------------------- /application/rf_data_rx/pin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/pin_trace.h -------------------------------------------------------------------------------- /application/rf_data_rx/rf_rx_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/rf_rx_ble.c -------------------------------------------------------------------------------- /application/rf_data_rx/rf_rx_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_rx/rf_rx_ble.h -------------------------------------------------------------------------------- /application/rf_data_tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/Makefile -------------------------------------------------------------------------------- /application/rf_data_tx/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_tx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_tx/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_tx/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/rf_data_tx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/main.c -------------------------------------------------------------------------------- /application/rf_data_tx/pin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx/pin_trace.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/MCU_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/MCU_Interface.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/MCU_Interface_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/MCU_Interface_template.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Commands.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Config.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Csma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Csma.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Fifo.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_General.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Gpio.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PacketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PacketHandler.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktBasic.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktStack.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktWMbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_PktWMbus.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Qi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Qi.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Radio.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Regs.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Timer.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Timer_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Timer_ex.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/S2LP_Types.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Inc/inc_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Inc/inc_all.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Commands.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Csma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Csma.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Fifo.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_General.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_General.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Gpio.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PacketHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PacketHandler.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktBasic.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktStack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktStack.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktWMbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_PktWMbus.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Qi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Qi.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Radio.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Timer.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Timer_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Timer_ex.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/S2LP_Library/Src/S2LP_Types.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/SDK_BasicGeneric_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/SDK_BasicGeneric_A.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/SDK_BasicGeneric_B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/SDK_BasicGeneric_B.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/SDK_Configuration_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/SDK_Configuration_Common.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/SDK_EVAL_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/SDK_EVAL_Config.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/SDK_EVAL_Spi_Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/SDK_EVAL_Spi_Driver.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Button.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Com.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_EEPROM.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Gpio.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Inc/SDK_EVAL_Led.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Button.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Com_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Com_UART.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Com_UART_DMA_TX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Com_UART_DMA_TX.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Config.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_EEPROM.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Gpio.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo/Src/SDK_EVAL_Led.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo_S2LP_Util/Inc/S2LP_SDK_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo_S2LP_Util/Inc/S2LP_SDK_Util.h -------------------------------------------------------------------------------- /application/rf_data_tx_rx/STM32_Nucleo_S2LP_Util/Src/S2LP_SDK_Util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/STM32_Nucleo_S2LP_Util/Src/S2LP_SDK_Util.c -------------------------------------------------------------------------------- /application/rf_data_tx_rx/cube_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/rf_data_tx_rx/cube_hal.h -------------------------------------------------------------------------------- /application/saadc_logger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/Makefile -------------------------------------------------------------------------------- /application/saadc_logger/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/saadc_logger/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/saadc_logger/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/saadc_logger/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/saadc_logger/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/saadc_logger/main.c -------------------------------------------------------------------------------- /application/sense_pir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/Makefile -------------------------------------------------------------------------------- /application/sense_pir/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/Readme.md -------------------------------------------------------------------------------- /application/sense_pir/doc/app_flow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/doc/app_flow.dot -------------------------------------------------------------------------------- /application/sense_pir/doc/app_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/doc/app_flow.png -------------------------------------------------------------------------------- /application/sense_pir/doc/data_flow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/doc/data_flow.dot -------------------------------------------------------------------------------- /application/sense_pir/doc/data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/doc/data_flow.png -------------------------------------------------------------------------------- /application/sense_pir/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/isr_manager.c -------------------------------------------------------------------------------- /application/sense_pir/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/isr_manager.h -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/pir_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/pir_pulse.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/sense_pir/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/sense_pir/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sense_pir/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sense_pir/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sense_pir/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sense_pir/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/main.c -------------------------------------------------------------------------------- /application/sense_pir/sensepi_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_ble.c -------------------------------------------------------------------------------- /application/sense_pir/sensepi_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_ble.h -------------------------------------------------------------------------------- /application/sense_pir/sensepi_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_func.c -------------------------------------------------------------------------------- /application/sense_pir/sensepi_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_func.h -------------------------------------------------------------------------------- /application/sense_pir/sensepi_store_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_store_config.c -------------------------------------------------------------------------------- /application/sense_pir/sensepi_store_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sensepi_store_config.h -------------------------------------------------------------------------------- /application/sense_pir/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sense_pir/sys_config.h -------------------------------------------------------------------------------- /application/sensebe_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/Makefile -------------------------------------------------------------------------------- /application/sensebe_rx/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/isr_manager.c -------------------------------------------------------------------------------- /application/sensebe_rx/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/isr_manager.h -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/detect_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/detect_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/detect_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/detect_sync.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/detect_window.txt: -------------------------------------------------------------------------------- 1 | 0 0; 2 | 0 500; -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/green_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/green_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/orange_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/orange_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_rx/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/sensebe_rx/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_rx/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_rx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_rx/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_rx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/main.c -------------------------------------------------------------------------------- /application/sensebe_rx/sensebe_rx_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/sensebe_rx_mod.c -------------------------------------------------------------------------------- /application/sensebe_rx/sensebe_rx_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/sensebe_rx_mod.h -------------------------------------------------------------------------------- /application/sensebe_rx/sensebe_store_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/sensebe_store_config.c -------------------------------------------------------------------------------- /application/sensebe_rx/sensebe_store_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/sensebe_store_config.h -------------------------------------------------------------------------------- /application/sensebe_rx/senseberx_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/senseberx_ble.c -------------------------------------------------------------------------------- /application/sensebe_rx/senseberx_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/senseberx_ble.h -------------------------------------------------------------------------------- /application/sensebe_rx/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_rx/sys_config.h -------------------------------------------------------------------------------- /application/sensebe_tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/Makefile -------------------------------------------------------------------------------- /application/sensebe_tx/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/isr_manager.c -------------------------------------------------------------------------------- /application/sensebe_tx/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/isr_manager.h -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/detect_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/detect_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/detect_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/detect_sync.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/detect_window.txt: -------------------------------------------------------------------------------- 1 | 0 0; 2 | 0 500; -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/green_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/green_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/orange_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/orange_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/sensebe_tx/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/main.c -------------------------------------------------------------------------------- /application/sensebe_tx/sensebe_store_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebe_store_config.c -------------------------------------------------------------------------------- /application/sensebe_tx/sensebe_store_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebe_store_config.h -------------------------------------------------------------------------------- /application/sensebe_tx/sensebe_tx_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebe_tx_mod.c -------------------------------------------------------------------------------- /application/sensebe_tx/sensebe_tx_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebe_tx_mod.h -------------------------------------------------------------------------------- /application/sensebe_tx/sensebetx_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebetx_ble.c -------------------------------------------------------------------------------- /application/sensebe_tx/sensebetx_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sensebetx_ble.h -------------------------------------------------------------------------------- /application/sensebe_tx/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx/sys_config.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/Makefile -------------------------------------------------------------------------------- /application/sensebe_tx_rx/isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/isr_manager.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/isr_manager.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/detect_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/detect_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/detect_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/detect_sync.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/detect_window.txt: -------------------------------------------------------------------------------- 1 | 0 0; 2 | 0 500; -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/dual_freq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/dual_freq.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/green_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/green_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/green_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/green_wave.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/led_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/led_seq.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/led_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/led_seq.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/orange_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/orange_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/orange_wave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/orange_wave.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/ramp_offset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/ramp_offset.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/red_pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/red_pulse.txt -------------------------------------------------------------------------------- /application/sensebe_tx_rx/led_sequences/separate_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/led_sequences/separate_values.py -------------------------------------------------------------------------------- /application/sensebe_tx_rx/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx_rx/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx_rx/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx_rx/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sensebe_tx_rx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/main.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_ble.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_ble.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_store_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_store_config.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_store_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_store_config.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_tx_rx_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_tx_rx_mod.c -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sensebe_tx_rx_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sensebe_tx_rx_mod.h -------------------------------------------------------------------------------- /application/sensebe_tx_rx/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sensebe_tx_rx/sys_config.h -------------------------------------------------------------------------------- /application/sim800_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/Makefile -------------------------------------------------------------------------------- /application/sim800_testing/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sim800_testing/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sim800_testing/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sim800_testing/linker/s112_nrf52840_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/linker/s112_nrf52840_xxaa.ld -------------------------------------------------------------------------------- /application/sim800_testing/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sim800_testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sim800_testing/main.c -------------------------------------------------------------------------------- /application/simple_statemachine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/Makefile -------------------------------------------------------------------------------- /application/simple_statemachine/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/simple_statemachine/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/simple_statemachine/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/simple_statemachine/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/simple_statemachine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/simple_statemachine/main.c -------------------------------------------------------------------------------- /application/sys_lvl_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/Makefile -------------------------------------------------------------------------------- /application/sys_lvl_testing/file_serial_interface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/file_serial_interface_test.py -------------------------------------------------------------------------------- /application/sys_lvl_testing/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sys_lvl_testing/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sys_lvl_testing/linker/s112_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/linker/s112_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/sys_lvl_testing/linker/s112_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/linker/s112_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sys_lvl_testing/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/sys_lvl_testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/sys_lvl_testing/main.c -------------------------------------------------------------------------------- /application/template_isr_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/template_isr_manager.c -------------------------------------------------------------------------------- /application/template_isr_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/template_isr_manager.h -------------------------------------------------------------------------------- /application/testing_firmware_v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/Makefile -------------------------------------------------------------------------------- /application/testing_firmware_v1/hw_testing_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/hw_testing_app.c -------------------------------------------------------------------------------- /application/testing_firmware_v1/hw_testing_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/hw_testing_app.h -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/blank_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/blank_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/blank_nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/blank_nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/blank_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/blank_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/gcc_startup_nrf51.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/gcc_startup_nrf51.S -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/gcc_startup_nrf52.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/gcc_startup_nrf52.S -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/gcc_startup_nrf52810.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/gcc_startup_nrf52810.S -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/gcc_startup_nrf52840.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/gcc_startup_nrf52840.S -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/nrf52810_xxaa.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/nrf52_common.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/nrf52_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/nrf52_xxaa.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/nrf5x_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/nrf5x_common.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/s130_nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/s130_nrf51422_xxac.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/linker/s132_nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/linker/s132_nrf52832_xxaa.ld -------------------------------------------------------------------------------- /application/testing_firmware_v1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/application/testing_firmware_v1/main.c -------------------------------------------------------------------------------- /codebase/AT_lib/AT_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/AT_proc.c -------------------------------------------------------------------------------- /codebase/AT_lib/AT_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/AT_proc.h -------------------------------------------------------------------------------- /codebase/AT_lib/Makefile.AT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/Makefile.AT -------------------------------------------------------------------------------- /codebase/AT_lib/defgroup_peripheral_modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/defgroup_peripheral_modules.txt -------------------------------------------------------------------------------- /codebase/AT_lib/sim800_cmd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/sim800_cmd_id.h -------------------------------------------------------------------------------- /codebase/AT_lib/sim800_oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/sim800_oper.c -------------------------------------------------------------------------------- /codebase/AT_lib/sim800_oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/AT_lib/sim800_oper.h -------------------------------------------------------------------------------- /codebase/cmsis/dsp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/dsp/.gitignore -------------------------------------------------------------------------------- /codebase/cmsis/dsp/libarm_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/dsp/libarm_cortexM4l_math.a -------------------------------------------------------------------------------- /codebase/cmsis/dsp/libarm_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/dsp/libarm_cortexM4lf_math.a -------------------------------------------------------------------------------- /codebase/cmsis/dsp/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/dsp/license.txt -------------------------------------------------------------------------------- /codebase/cmsis/include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/arm_common_tables.h -------------------------------------------------------------------------------- /codebase/cmsis/include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/arm_const_structs.h -------------------------------------------------------------------------------- /codebase/cmsis/include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/arm_math.h -------------------------------------------------------------------------------- /codebase/cmsis/include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/cmsis_armcc.h -------------------------------------------------------------------------------- /codebase/cmsis/include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /codebase/cmsis/include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/cmsis_gcc.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cm0.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cm0plus.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cm3.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cm4.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cm7.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cmFunc.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cmInstr.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_cmSimd.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_sc000.h -------------------------------------------------------------------------------- /codebase/cmsis/include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/cmsis/include/core_sc300.h -------------------------------------------------------------------------------- /codebase/defgroup_codebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/defgroup_codebase.txt -------------------------------------------------------------------------------- /codebase/hal/defgroup_hal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/defgroup_hal.txt -------------------------------------------------------------------------------- /codebase/hal/hal_clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_clocks.c -------------------------------------------------------------------------------- /codebase/hal/hal_clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_clocks.h -------------------------------------------------------------------------------- /codebase/hal/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_gpio.h -------------------------------------------------------------------------------- /codebase/hal/hal_nop_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_nop_delay.h -------------------------------------------------------------------------------- /codebase/hal/hal_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_nvmc.c -------------------------------------------------------------------------------- /codebase/hal/hal_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_nvmc.h -------------------------------------------------------------------------------- /codebase/hal/hal_pin_analog_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_pin_analog_input.h -------------------------------------------------------------------------------- /codebase/hal/hal_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_ppi.c -------------------------------------------------------------------------------- /codebase/hal/hal_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_ppi.h -------------------------------------------------------------------------------- /codebase/hal/hal_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_pwm.c -------------------------------------------------------------------------------- /codebase/hal/hal_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_pwm.h -------------------------------------------------------------------------------- /codebase/hal/hal_radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_radio.c -------------------------------------------------------------------------------- /codebase/hal/hal_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_radio.h -------------------------------------------------------------------------------- /codebase/hal/hal_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_saadc.c -------------------------------------------------------------------------------- /codebase/hal/hal_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_saadc.h -------------------------------------------------------------------------------- /codebase/hal/hal_spim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_spim.c -------------------------------------------------------------------------------- /codebase/hal/hal_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_spim.h -------------------------------------------------------------------------------- /codebase/hal/hal_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_twim.c -------------------------------------------------------------------------------- /codebase/hal/hal_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_twim.h -------------------------------------------------------------------------------- /codebase/hal/hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_uart.c -------------------------------------------------------------------------------- /codebase/hal/hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_uart.h -------------------------------------------------------------------------------- /codebase/hal/hal_uarte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_uarte.c -------------------------------------------------------------------------------- /codebase/hal/hal_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_uarte.h -------------------------------------------------------------------------------- /codebase/hal/hal_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_wdt.c -------------------------------------------------------------------------------- /codebase/hal/hal_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/hal/hal_wdt.h -------------------------------------------------------------------------------- /codebase/nrf_core/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/compiler_abstraction.h -------------------------------------------------------------------------------- /codebase/nrf_core/gcc_startup_nrf51.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/gcc_startup_nrf51.S -------------------------------------------------------------------------------- /codebase/nrf_core/gcc_startup_nrf52.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/gcc_startup_nrf52.S -------------------------------------------------------------------------------- /codebase/nrf_core/gcc_startup_nrf52810.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/gcc_startup_nrf52810.S -------------------------------------------------------------------------------- /codebase/nrf_core/gcc_startup_nrf52840.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/gcc_startup_nrf52840.S -------------------------------------------------------------------------------- /codebase/nrf_core/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51.svd -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51422_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51422_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51801_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51801_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51801_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51801_xxab.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51802_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51802_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51822_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51822_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51824_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51824_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_bitfields.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_common.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_deprecated.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_to_nrf52810.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_xxaa.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_xxab.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf51_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf51_xxac.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52.svd -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52810.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52810.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52810.svd -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52810_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52810_bitfields.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52810_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52810_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52810_xxaa.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52832_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52832_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52832_xxab.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52840.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52840.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52840.svd -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52840_bitfields.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52840_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52840_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52840_xxaa.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_bitfields.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_common.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_name_change.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_to_nrf52810.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /codebase/nrf_core/nrf52_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf52_xxaa.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf5x_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf5x_common.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf_common.ld -------------------------------------------------------------------------------- /codebase/nrf_core/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/nrf_peripherals.h -------------------------------------------------------------------------------- /codebase/nrf_core/startup_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/startup_config.h -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf51.c -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf51.h -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf51422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf51422.c -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52.c -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52.h -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52810.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52810.c -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52810.h -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52840.c -------------------------------------------------------------------------------- /codebase/nrf_core/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/nrf_core/system_nrf52840.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/LSM6DS3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/LSM6DS3.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/LSM6DS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/LSM6DS3.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/aa_aaa_battery_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/aa_aaa_battery_check.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/aux_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/aux_clk.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/aux_clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/aux_clk.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/ble_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/ble_adv.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/ble_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/ble_adv.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/button_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/button_ui.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/button_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/button_ui.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/byte_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/byte_frame.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/byte_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/byte_frame.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/cam_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/cam_trigger.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/cam_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/cam_trigger.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/defgroup_peripheral_modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/defgroup_peripheral_modules.txt -------------------------------------------------------------------------------- /codebase/peripheral_modules/device_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/device_tick.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/device_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/device_tick.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/gpio_level_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/gpio_level_handler.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/gpio_level_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/gpio_level_handler.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/gps_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/gps_mod.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/gps_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/gps_mod.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/led_sense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/led_sense.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/led_sense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/led_sense.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/led_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/led_ui.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/led_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/led_ui.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/log.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/mcp4012_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/mcp4012_x.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/mcp4012_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/mcp4012_x.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/ms_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/ms_timer.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/ms_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/ms_timer.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/nvm_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/nvm_logger.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/nvm_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/nvm_logger.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/out_pattern_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/out_pattern_gen.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/out_pattern_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/out_pattern_gen.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/pir_sense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/pir_sense.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/pir_sense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/pir_sense.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/profiler_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/profiler_timer.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/profiler_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/profiler_timer.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/radio_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/radio_trigger.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/radio_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/radio_trigger.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/random_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/random_num.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/random_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/random_num.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/simple_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/simple_adc.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/simple_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/simple_adc.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/simple_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/simple_pwm.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/simple_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/simple_pwm.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/slot_manage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/slot_manage.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/slot_manage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/slot_manage.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/time_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/time_tracker.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/time_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/time_tracker.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/tinyprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tinyprintf.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/tinyprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tinyprintf.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/tssp_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tssp_detect.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/tssp_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tssp_detect.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/tssp_ir_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tssp_ir_tx.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/tssp_ir_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/tssp_ir_tx.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/uart_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/uart_printf.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/uart_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/uart_printf.h -------------------------------------------------------------------------------- /codebase/peripheral_modules/us_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/us_timer.c -------------------------------------------------------------------------------- /codebase/peripheral_modules/us_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/peripheral_modules/us_timer.h -------------------------------------------------------------------------------- /codebase/rf_lib/rf_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/rf_comm.h -------------------------------------------------------------------------------- /codebase/rf_lib/rf_spi_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/rf_spi_hw.c -------------------------------------------------------------------------------- /codebase/rf_lib/rf_spi_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/rf_spi_hw.h -------------------------------------------------------------------------------- /codebase/rf_lib/ti_radio_lib/cc112x_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/ti_radio_lib/cc112x_def.h -------------------------------------------------------------------------------- /codebase/rf_lib/ti_radio_lib/rf_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/ti_radio_lib/rf_comm.c -------------------------------------------------------------------------------- /codebase/rf_lib/ti_radio_lib/spi_rf_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/ti_radio_lib/spi_rf_nrf52.c -------------------------------------------------------------------------------- /codebase/rf_lib/ti_radio_lib/spi_rf_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/rf_lib/ti_radio_lib/spi_rf_nrf52.h -------------------------------------------------------------------------------- /codebase/sd_assist/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/sd_assist/app_error.c -------------------------------------------------------------------------------- /codebase/sd_assist/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/sd_assist/app_error.h -------------------------------------------------------------------------------- /codebase/sd_assist/defgroup_util.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/sd_assist/defgroup_util.txt -------------------------------------------------------------------------------- /codebase/sd_assist/evt_sd_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/sd_assist/evt_sd_handler.c -------------------------------------------------------------------------------- /codebase/sd_assist/evt_sd_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/sd_assist/evt_sd_handler.h -------------------------------------------------------------------------------- /codebase/segger_rtt/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/segger_rtt/SEGGER_RTT.c -------------------------------------------------------------------------------- /codebase/segger_rtt/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/segger_rtt/SEGGER_RTT.h -------------------------------------------------------------------------------- /codebase/segger_rtt/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/segger_rtt/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /codebase/segger_rtt/SEGGER_RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/segger_rtt/SEGGER_RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /codebase/segger_rtt/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/segger_rtt/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1101_drv/cc1101_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1101_drv/cc1101_def.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1101_drv/cc1101_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1101_drv/cc1101_drv.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1101_drv/cc1101_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1101_drv/cc1101_utils.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc112x_drv/cc112x_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc112x_drv/cc112x_def.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc112x_drv/cc112x_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc112x_drv/cc112x_drv.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc112x_drv/cc112x_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc112x_drv/cc112x_utils.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1190_drv/cc1190_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1190_drv/cc1190_drv.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1190_drv/cc1190_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1190_drv/cc1190_drv.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/cc1x_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/cc1x_utils.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/hal_spi_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/hal_spi_rf.c -------------------------------------------------------------------------------- /codebase/ti_radio_lib/hal_spi_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/hal_spi_rf.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/hal_spi_rf_exp430g2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/hal_spi_rf_exp430g2.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/hal_spi_rf_exp5529.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/hal_spi_rf_exp5529.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/hal_spi_rf_trxeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/hal_spi_rf_trxeb.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/radio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/radio_drv.h -------------------------------------------------------------------------------- /codebase/ti_radio_lib/spi_rf_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/ti_radio_lib/spi_rf_nrf52.h -------------------------------------------------------------------------------- /codebase/util/CBUF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/CBUF.h -------------------------------------------------------------------------------- /codebase/util/common_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/common_util.h -------------------------------------------------------------------------------- /codebase/util/defgroup_util.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/defgroup_util.txt -------------------------------------------------------------------------------- /codebase/util/dev_id_fw_ver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/dev_id_fw_ver.c -------------------------------------------------------------------------------- /codebase/util/dev_id_fw_ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/dev_id_fw_ver.h -------------------------------------------------------------------------------- /codebase/util/irq_msg_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/irq_msg_util.c -------------------------------------------------------------------------------- /codebase/util/irq_msg_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/irq_msg_util.h -------------------------------------------------------------------------------- /codebase/util/minmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/minmea.c -------------------------------------------------------------------------------- /codebase/util/minmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/minmea.h -------------------------------------------------------------------------------- /codebase/util/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/nrf_assert.c -------------------------------------------------------------------------------- /codebase/util/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/nrf_assert.h -------------------------------------------------------------------------------- /codebase/util/nrf_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/nrf_util.c -------------------------------------------------------------------------------- /codebase/util/nrf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/codebase/util/nrf_util.h -------------------------------------------------------------------------------- /doc/.netbeans.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/.netbeans.zip -------------------------------------------------------------------------------- /doc/Appiko.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/Appiko.doxyfile -------------------------------------------------------------------------------- /doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/SDK_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/SDK_changelog.md -------------------------------------------------------------------------------- /doc/firmware_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/firmware_update.md -------------------------------------------------------------------------------- /doc/firmware_update_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/firmware_update_dev.md -------------------------------------------------------------------------------- /doc/firmware_update_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/firmware_update_user.md -------------------------------------------------------------------------------- /doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/header.html -------------------------------------------------------------------------------- /doc/installations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/installations.md -------------------------------------------------------------------------------- /doc/main_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/doc/main_page.md -------------------------------------------------------------------------------- /platform/Makefile.board_bluey_1v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_bluey_1v1 -------------------------------------------------------------------------------- /platform/Makefile.board_detect_rev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_detect_rev1 -------------------------------------------------------------------------------- /platform/Makefile.board_hackable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_hackable -------------------------------------------------------------------------------- /platform/Makefile.board_pca10028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_pca10028 -------------------------------------------------------------------------------- /platform/Makefile.board_pca10040: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_pca10040 -------------------------------------------------------------------------------- /platform/Makefile.board_sensebe_rev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensebe_rev1 -------------------------------------------------------------------------------- /platform/Makefile.board_sensebe_rev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensebe_rev3 -------------------------------------------------------------------------------- /platform/Makefile.board_sensebe_rx_rev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensebe_rx_rev1 -------------------------------------------------------------------------------- /platform/Makefile.board_sensebe_rx_rev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensebe_rx_rev2 -------------------------------------------------------------------------------- /platform/Makefile.board_senseberx_rev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_senseberx_rev3 -------------------------------------------------------------------------------- /platform/Makefile.board_sensebetx_rev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensebetx_rev3 -------------------------------------------------------------------------------- /platform/Makefile.board_senseble_rev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_senseble_rev1 -------------------------------------------------------------------------------- /platform/Makefile.board_senseele_pcb_rev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_senseele_pcb_rev2 -------------------------------------------------------------------------------- /platform/Makefile.board_sensepi_rev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensepi_rev2 -------------------------------------------------------------------------------- /platform/Makefile.board_sensepi_rev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensepi_rev3 -------------------------------------------------------------------------------- /platform/Makefile.board_sensepi_rev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensepi_rev4 -------------------------------------------------------------------------------- /platform/Makefile.board_sensepi_rev5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/Makefile.board_sensepi_rev5 -------------------------------------------------------------------------------- /platform/bluey_1v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/bluey_1v1.h -------------------------------------------------------------------------------- /platform/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/boards.h -------------------------------------------------------------------------------- /platform/defgroup_platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/defgroup_platform.txt -------------------------------------------------------------------------------- /platform/detect_rev1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/detect_rev1.h -------------------------------------------------------------------------------- /platform/hackable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/hackable.h -------------------------------------------------------------------------------- /platform/pca10028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/pca10028.h -------------------------------------------------------------------------------- /platform/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/pca10040.h -------------------------------------------------------------------------------- /platform/sensebe_rev1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensebe_rev1.h -------------------------------------------------------------------------------- /platform/sensebe_rev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensebe_rev3.h -------------------------------------------------------------------------------- /platform/sensebe_rx_rev1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensebe_rx_rev1.h -------------------------------------------------------------------------------- /platform/sensebe_rx_rev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensebe_rx_rev2.h -------------------------------------------------------------------------------- /platform/senseberx_rev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/senseberx_rev3.h -------------------------------------------------------------------------------- /platform/sensebetx_rev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensebetx_rev3.h -------------------------------------------------------------------------------- /platform/senseble_rev1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/senseble_rev1.h -------------------------------------------------------------------------------- /platform/senseele_pcb_rev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/senseele_pcb_rev2.h -------------------------------------------------------------------------------- /platform/sensepi_rev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensepi_rev2.h -------------------------------------------------------------------------------- /platform/sensepi_rev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensepi_rev3.h -------------------------------------------------------------------------------- /platform/sensepi_rev4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensepi_rev4.h -------------------------------------------------------------------------------- /platform/sensepi_rev5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/platform/sensepi_rev5.h -------------------------------------------------------------------------------- /release/boards_lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/release/boards_lookup -------------------------------------------------------------------------------- /release/bootloader_lookup: -------------------------------------------------------------------------------- 1 | 1.0.0 nrf52810_xxaa_s112 2 | -------------------------------------------------------------------------------- /release/release_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/release/release_script.sh -------------------------------------------------------------------------------- /release/sd_lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/release/sd_lookup -------------------------------------------------------------------------------- /utils/rtt_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Appiko/nrf5x-firmware/HEAD/utils/rtt_logger.py --------------------------------------------------------------------------------