├── README.md ├── firmware ├── .gitignore ├── .vscode │ ├── .gitignore │ ├── c_cpp_properties.json │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── EFR32FG14P233F256GM48.svd ├── LICENSE ├── Makefile ├── README.md ├── flashing.md ├── freertos │ ├── FreeRTOS.h │ ├── FreeRTOSConfig.h │ ├── deprecated_definitions.h │ ├── heap_2.c │ ├── list.c │ ├── list.h │ ├── mpu_wrappers.h │ ├── port.c │ ├── portable.h │ ├── portmacro.h │ ├── projdefs.h │ ├── queue.c │ ├── queue.h │ ├── semphr.h │ ├── stack_macros.h │ ├── task.h │ ├── tasks.c │ ├── timers.c │ └── timers.h ├── inc │ ├── InitDevice.h │ ├── config.h │ ├── display.h │ ├── dsp.h │ ├── dsp_driver.h │ ├── dsp_math.h │ ├── font8x8_basic.h │ ├── power.h │ ├── railtask.h │ ├── rig.h │ ├── ui.h │ ├── ui_hw.h │ └── ui_parameters.h ├── mgkokeilu2_EFR32MG1P232F256GM48.hwconf ├── openocd │ ├── README.md │ ├── adapter.cfg │ ├── flash_v1.cfg │ ├── flash_v2.cfg │ └── rtt.cfg ├── src │ ├── InitDevice.c │ ├── config.c │ ├── debugprint.c │ ├── display.c │ ├── dsp.c │ ├── dsp_driver.c │ ├── main.c │ ├── power.c │ ├── railtask.c │ └── ui.c └── test │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── dsp_tx_test.c │ └── test_dsp_math.c ├── gecko_sdk_suite └── v2.7 │ └── platform │ ├── CMSIS │ ├── DSP_Lib │ │ └── Source │ │ │ ├── CommonTables │ │ │ ├── arm_common_tables.c │ │ │ └── arm_const_structs.c │ │ │ └── TransformFunctions │ │ │ ├── arm_bitreversal.c │ │ │ ├── arm_bitreversal2.S │ │ │ ├── arm_cfft_f32.c │ │ │ ├── arm_cfft_q15.c │ │ │ ├── arm_cfft_q31.c │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ ├── arm_dct4_f32.c │ │ │ ├── arm_dct4_init_f32.c │ │ │ ├── arm_dct4_init_q15.c │ │ │ ├── arm_dct4_init_q31.c │ │ │ ├── arm_dct4_q15.c │ │ │ ├── arm_dct4_q31.c │ │ │ ├── arm_rfft_f32.c │ │ │ ├── arm_rfft_fast_f32.c │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ ├── arm_rfft_init_f32.c │ │ │ ├── arm_rfft_init_q15.c │ │ │ ├── arm_rfft_init_q31.c │ │ │ ├── arm_rfft_q15.c │ │ │ └── arm_rfft_q31.c │ └── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_cm4.h │ │ ├── mpu_armv7.h │ │ └── tz_context.h │ ├── Device │ └── SiliconLabs │ │ ├── BGM1 │ │ ├── Include │ │ │ ├── bgm111a256v2.h │ │ │ ├── bgm111e256v2.h │ │ │ ├── bgm113a256v2.h │ │ │ ├── bgm11s12f256ga.h │ │ │ ├── bgm11s22f256ga.h │ │ │ ├── bgm121a256v2.h │ │ │ ├── bgm121n256v2.h │ │ │ ├── bgm123a256v2.h │ │ │ ├── bgm123n256v2.h │ │ │ ├── bgm1_acmp.h │ │ │ ├── bgm1_adc.h │ │ │ ├── bgm1_af_pins.h │ │ │ ├── bgm1_af_ports.h │ │ │ ├── bgm1_cmu.h │ │ │ ├── bgm1_cryotimer.h │ │ │ ├── bgm1_crypto.h │ │ │ ├── bgm1_devinfo.h │ │ │ ├── bgm1_dma_descriptor.h │ │ │ ├── bgm1_dmareq.h │ │ │ ├── bgm1_emu.h │ │ │ ├── bgm1_fpueh.h │ │ │ ├── bgm1_gpcrc.h │ │ │ ├── bgm1_gpio.h │ │ │ ├── bgm1_gpio_p.h │ │ │ ├── bgm1_i2c.h │ │ │ ├── bgm1_idac.h │ │ │ ├── bgm1_ldma.h │ │ │ ├── bgm1_ldma_ch.h │ │ │ ├── bgm1_letimer.h │ │ │ ├── bgm1_leuart.h │ │ │ ├── bgm1_msc.h │ │ │ ├── bgm1_pcnt.h │ │ │ ├── bgm1_prs.h │ │ │ ├── bgm1_prs_ch.h │ │ │ ├── bgm1_prs_signals.h │ │ │ ├── bgm1_rmu.h │ │ │ ├── bgm1_romtable.h │ │ │ ├── bgm1_rtcc.h │ │ │ ├── bgm1_rtcc_cc.h │ │ │ ├── bgm1_rtcc_ret.h │ │ │ ├── bgm1_timer.h │ │ │ ├── bgm1_timer_cc.h │ │ │ ├── bgm1_usart.h │ │ │ ├── bgm1_wdog.h │ │ │ ├── bgm1_wdog_pch.h │ │ │ ├── em_device.h │ │ │ └── system_bgm1.h │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_bgm1.s │ │ │ ├── GCC │ │ │ ├── bgm1.ld │ │ │ ├── startup_bgm1.S │ │ │ └── startup_bgm1.c │ │ │ ├── IAR │ │ │ ├── startup_bgm1.c │ │ │ └── startup_bgm1.s │ │ │ └── system_bgm1.c │ │ ├── EFR32FG14P │ │ ├── Include │ │ │ ├── efr32fg14p231f128gm32.h │ │ │ ├── efr32fg14p231f128gm48.h │ │ │ ├── efr32fg14p231f256gm32.h │ │ │ ├── efr32fg14p231f256gm48.h │ │ │ ├── efr32fg14p231f256im32.h │ │ │ ├── efr32fg14p231f256im48.h │ │ │ ├── efr32fg14p232f128gm32.h │ │ │ ├── efr32fg14p232f128gm48.h │ │ │ ├── efr32fg14p232f256gm32.h │ │ │ ├── efr32fg14p232f256gm48.h │ │ │ ├── efr32fg14p233f128gm48.h │ │ │ ├── efr32fg14p233f256gm48.h │ │ │ ├── efr32fg14p_acmp.h │ │ │ ├── efr32fg14p_adc.h │ │ │ ├── efr32fg14p_af_pins.h │ │ │ ├── efr32fg14p_af_ports.h │ │ │ ├── efr32fg14p_cmu.h │ │ │ ├── efr32fg14p_cryotimer.h │ │ │ ├── efr32fg14p_crypto.h │ │ │ ├── efr32fg14p_devinfo.h │ │ │ ├── efr32fg14p_dma_descriptor.h │ │ │ ├── efr32fg14p_dmareq.h │ │ │ ├── efr32fg14p_emu.h │ │ │ ├── efr32fg14p_fpueh.h │ │ │ ├── efr32fg14p_gpcrc.h │ │ │ ├── efr32fg14p_gpio.h │ │ │ ├── efr32fg14p_gpio_p.h │ │ │ ├── efr32fg14p_i2c.h │ │ │ ├── efr32fg14p_idac.h │ │ │ ├── efr32fg14p_ldma.h │ │ │ ├── efr32fg14p_ldma_ch.h │ │ │ ├── efr32fg14p_lesense.h │ │ │ ├── efr32fg14p_lesense_buf.h │ │ │ ├── efr32fg14p_lesense_ch.h │ │ │ ├── efr32fg14p_lesense_st.h │ │ │ ├── efr32fg14p_letimer.h │ │ │ ├── efr32fg14p_leuart.h │ │ │ ├── efr32fg14p_msc.h │ │ │ ├── efr32fg14p_pcnt.h │ │ │ ├── efr32fg14p_prs.h │ │ │ ├── efr32fg14p_prs_ch.h │ │ │ ├── efr32fg14p_prs_signals.h │ │ │ ├── efr32fg14p_rmu.h │ │ │ ├── efr32fg14p_romtable.h │ │ │ ├── efr32fg14p_rtc.h │ │ │ ├── efr32fg14p_rtc_comp.h │ │ │ ├── efr32fg14p_rtcc.h │ │ │ ├── efr32fg14p_rtcc_cc.h │ │ │ ├── efr32fg14p_rtcc_ret.h │ │ │ ├── efr32fg14p_smu.h │ │ │ ├── efr32fg14p_timer.h │ │ │ ├── efr32fg14p_timer_cc.h │ │ │ ├── efr32fg14p_trng.h │ │ │ ├── efr32fg14p_usart.h │ │ │ ├── efr32fg14p_vdac.h │ │ │ ├── efr32fg14p_vdac_opa.h │ │ │ ├── efr32fg14p_wdog.h │ │ │ ├── efr32fg14p_wdog_pch.h │ │ │ ├── em_device.h │ │ │ └── system_efr32fg14p.h │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_efr32fg14p.s │ │ │ ├── GCC │ │ │ ├── efr32fg14p.ld │ │ │ ├── startup_efr32fg14p.S │ │ │ └── startup_efr32fg14p.c │ │ │ ├── IAR │ │ │ ├── startup_efr32fg14p.c │ │ │ └── startup_efr32fg14p.s │ │ │ └── system_efr32fg14p.c │ │ └── EFR32MG1P │ │ ├── Include │ │ ├── efr32mg1p131f256gm48.h │ │ ├── efr32mg1p132f256gj43.h │ │ ├── efr32mg1p132f256gm32.h │ │ ├── efr32mg1p132f256gm48.h │ │ ├── efr32mg1p132f256im32.h │ │ ├── efr32mg1p132f256im48.h │ │ ├── efr32mg1p133f256gm48.h │ │ ├── efr32mg1p231f256gm48.h │ │ ├── efr32mg1p232f256gj43.h │ │ ├── efr32mg1p232f256gm32.h │ │ ├── efr32mg1p232f256gm48.h │ │ ├── efr32mg1p232f256im32.h │ │ ├── efr32mg1p232f256im48.h │ │ ├── efr32mg1p233f256gm48.h │ │ ├── efr32mg1p233f256im48.h │ │ ├── efr32mg1p632f256gm32.h │ │ ├── efr32mg1p632f256im32.h │ │ ├── efr32mg1p732f256gm32.h │ │ ├── efr32mg1p732f256im32.h │ │ ├── efr32mg1p_acmp.h │ │ ├── efr32mg1p_adc.h │ │ ├── efr32mg1p_af_pins.h │ │ ├── efr32mg1p_af_ports.h │ │ ├── efr32mg1p_cmu.h │ │ ├── efr32mg1p_cryotimer.h │ │ ├── efr32mg1p_crypto.h │ │ ├── efr32mg1p_devinfo.h │ │ ├── efr32mg1p_dma_descriptor.h │ │ ├── efr32mg1p_dmareq.h │ │ ├── efr32mg1p_emu.h │ │ ├── efr32mg1p_fpueh.h │ │ ├── efr32mg1p_gpcrc.h │ │ ├── efr32mg1p_gpio.h │ │ ├── efr32mg1p_gpio_p.h │ │ ├── efr32mg1p_i2c.h │ │ ├── efr32mg1p_idac.h │ │ ├── efr32mg1p_ldma.h │ │ ├── efr32mg1p_ldma_ch.h │ │ ├── efr32mg1p_letimer.h │ │ ├── efr32mg1p_leuart.h │ │ ├── efr32mg1p_msc.h │ │ ├── efr32mg1p_pcnt.h │ │ ├── efr32mg1p_prs.h │ │ ├── efr32mg1p_prs_ch.h │ │ ├── efr32mg1p_prs_signals.h │ │ ├── efr32mg1p_rmu.h │ │ ├── efr32mg1p_romtable.h │ │ ├── efr32mg1p_rtcc.h │ │ ├── efr32mg1p_rtcc_cc.h │ │ ├── efr32mg1p_rtcc_ret.h │ │ ├── efr32mg1p_timer.h │ │ ├── efr32mg1p_timer_cc.h │ │ ├── efr32mg1p_usart.h │ │ ├── efr32mg1p_wdog.h │ │ ├── efr32mg1p_wdog_pch.h │ │ ├── em_device.h │ │ └── system_efr32mg1p.h │ │ └── Source │ │ ├── ARM │ │ └── startup_efr32mg1p.s │ │ ├── GCC │ │ ├── efr32mg1p.ld │ │ ├── startup_efr32mg1p.S │ │ └── startup_efr32mg1p.c │ │ ├── IAR │ │ ├── startup_efr32mg1p.c │ │ └── startup_efr32mg1p.s │ │ └── system_efr32mg1p.c │ ├── emlib │ ├── ReadMe_emlib.txt │ ├── inc │ │ ├── em_acmp.h │ │ ├── em_adc.h │ │ ├── em_aes.h │ │ ├── em_assert.h │ │ ├── em_burtc.h │ │ ├── em_bus.h │ │ ├── em_can.h │ │ ├── em_chip.h │ │ ├── em_cmu.h │ │ ├── em_common.h │ │ ├── em_core.h │ │ ├── em_cryotimer.h │ │ ├── em_crypto.h │ │ ├── em_csen.h │ │ ├── em_dac.h │ │ ├── em_dbg.h │ │ ├── em_dma.h │ │ ├── em_ebi.h │ │ ├── em_emu.h │ │ ├── em_eusart.h │ │ ├── em_gpcrc.h │ │ ├── em_gpio.h │ │ ├── em_i2c.h │ │ ├── em_iadc.h │ │ ├── em_idac.h │ │ ├── em_int.h │ │ ├── em_lcd.h │ │ ├── em_ldma.h │ │ ├── em_lesense.h │ │ ├── em_letimer.h │ │ ├── em_leuart.h │ │ ├── em_mpu.h │ │ ├── em_msc.h │ │ ├── em_opamp.h │ │ ├── em_pcnt.h │ │ ├── em_pdm.h │ │ ├── em_prs.h │ │ ├── em_qspi.h │ │ ├── em_ramfunc.h │ │ ├── em_rmu.h │ │ ├── em_rtc.h │ │ ├── em_rtcc.h │ │ ├── em_se.h │ │ ├── em_smu.h │ │ ├── em_system.h │ │ ├── em_timer.h │ │ ├── em_usart.h │ │ ├── em_vcmp.h │ │ ├── em_vdac.h │ │ ├── em_version.h │ │ └── em_wdog.h │ └── src │ │ ├── em_acmp.c │ │ ├── em_adc.c │ │ ├── em_aes.c │ │ ├── em_assert.c │ │ ├── em_burtc.c │ │ ├── em_can.c │ │ ├── em_cmu.c │ │ ├── em_core.c │ │ ├── em_cryotimer.c │ │ ├── em_crypto.c │ │ ├── em_csen.c │ │ ├── em_dac.c │ │ ├── em_dbg.c │ │ ├── em_dma.c │ │ ├── em_ebi.c │ │ ├── em_emu.c │ │ ├── em_eusart.c │ │ ├── em_gpcrc.c │ │ ├── em_gpio.c │ │ ├── em_i2c.c │ │ ├── em_iadc.c │ │ ├── em_idac.c │ │ ├── em_int.c │ │ ├── em_lcd.c │ │ ├── em_ldma.c │ │ ├── em_lesense.c │ │ ├── em_letimer.c │ │ ├── em_leuart.c │ │ ├── em_mpu.c │ │ ├── em_msc.c │ │ ├── em_opamp.c │ │ ├── em_pcnt.c │ │ ├── em_pdm.c │ │ ├── em_prs.c │ │ ├── em_qspi.c │ │ ├── em_rmu.c │ │ ├── em_rtc.c │ │ ├── em_rtcc.c │ │ ├── em_se.c │ │ ├── em_system.c │ │ ├── em_timer.c │ │ ├── em_usart.c │ │ ├── em_vcmp.c │ │ ├── em_vdac.c │ │ └── em_wdog.c │ └── radio │ └── rail_lib │ ├── autogen │ └── librail_release │ │ ├── librail_efr32xg14_gcc_release.a │ │ └── librail_efr32xg1_gcc_release.a │ ├── chip │ └── efr32 │ │ └── efr32xg1x │ │ └── rail_chip_specific.h │ └── common │ ├── rail.h │ ├── rail_assert_error_codes.h │ ├── rail_features.h │ └── rail_types.h ├── hardware_v1 ├── README.md └── brd4151a-pinout.png ├── hardware_v2 ├── README.md ├── connections.png ├── connections │ ├── .gitignore │ ├── connections.kicad_pcb │ ├── connections.kicad_prl │ ├── connections.kicad_pro │ ├── connections.kicad_sch │ └── crop_plot.sh └── pcb │ ├── .gitignore │ ├── README.md │ ├── fix_pos_for_jlcpcb.sh │ ├── fp-lib-table │ ├── kapula-rescue.dcm │ ├── kapula-rescue.kicad_sym │ ├── kapula.dcm │ ├── kapula.kicad_pcb │ ├── kapula.kicad_prl │ ├── kapula.kicad_pro │ ├── kapula.kicad_sch │ ├── kapula.kicad_sym │ ├── kapula.pretty │ ├── 18650_holder_Keystone_1043.kicad_mod │ ├── BW21S.kicad_mod │ ├── C_0402_to_0603_HandSolder.kicad_mod │ ├── DZ127S-22-10-55.kicad_mod │ ├── L_0402_to_0603_HandSolder.kicad_mod │ ├── NetTie-2_SMD_Pad0.2mm.kicad_mod │ ├── NetTie-2_SMD_Pad0.3mm.kicad_mod │ ├── Pad_0402_1005Metric.kicad_mod │ ├── Pad_1mm.kicad_mod │ ├── R_0402_to_0603_HandSolder.kicad_mod │ ├── RotaryEncoder_Alps_EC11B-Switch_Horizontal.kicad_mod │ ├── TG2016SMN.kicad_mod │ └── ToolingHole.kicad_mod │ ├── make_files_for_jlcpcb.sh │ └── sym-lib-table ├── railconfig ├── .cproject ├── .gitignore ├── .project ├── .settings │ └── com.silabs.ss.framework.ide.project.sls.core.prefs ├── efr32-standalone-radio-config-configuration.h ├── efr32_radio_configurator_log.txt ├── rail_config.c ├── rail_config.h ├── rail_test_commands.txt └── railconfig.isc └── railconfig_v2 ├── .cproject ├── .gitignore ├── .project ├── .settings └── com.silabs.ss.framework.ide.project.sls.core.prefs ├── efr32-standalone-radio-config-configuration.h ├── efr32_radio_configurator_log.txt ├── rail_config.c ├── rail_config.h ├── rail_test_commands.txt └── railconfig_v2.isc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/README.md -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | .*.state.json 2 | *.log 3 | -------------------------------------------------------------------------------- /firmware/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /firmware/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.vscode/extensions.json -------------------------------------------------------------------------------- /firmware/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.vscode/launch.json -------------------------------------------------------------------------------- /firmware/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.vscode/settings.json -------------------------------------------------------------------------------- /firmware/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/.vscode/tasks.json -------------------------------------------------------------------------------- /firmware/EFR32FG14P233F256GM48.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/EFR32FG14P233F256GM48.svd -------------------------------------------------------------------------------- /firmware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/LICENSE -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/flashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/flashing.md -------------------------------------------------------------------------------- /firmware/freertos/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/FreeRTOS.h -------------------------------------------------------------------------------- /firmware/freertos/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/FreeRTOSConfig.h -------------------------------------------------------------------------------- /firmware/freertos/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/deprecated_definitions.h -------------------------------------------------------------------------------- /firmware/freertos/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/heap_2.c -------------------------------------------------------------------------------- /firmware/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/list.c -------------------------------------------------------------------------------- /firmware/freertos/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/list.h -------------------------------------------------------------------------------- /firmware/freertos/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/mpu_wrappers.h -------------------------------------------------------------------------------- /firmware/freertos/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/port.c -------------------------------------------------------------------------------- /firmware/freertos/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/portable.h -------------------------------------------------------------------------------- /firmware/freertos/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/portmacro.h -------------------------------------------------------------------------------- /firmware/freertos/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/projdefs.h -------------------------------------------------------------------------------- /firmware/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/queue.c -------------------------------------------------------------------------------- /firmware/freertos/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/queue.h -------------------------------------------------------------------------------- /firmware/freertos/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/semphr.h -------------------------------------------------------------------------------- /firmware/freertos/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/stack_macros.h -------------------------------------------------------------------------------- /firmware/freertos/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/task.h -------------------------------------------------------------------------------- /firmware/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/tasks.c -------------------------------------------------------------------------------- /firmware/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/timers.c -------------------------------------------------------------------------------- /firmware/freertos/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/freertos/timers.h -------------------------------------------------------------------------------- /firmware/inc/InitDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/InitDevice.h -------------------------------------------------------------------------------- /firmware/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/config.h -------------------------------------------------------------------------------- /firmware/inc/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/display.h -------------------------------------------------------------------------------- /firmware/inc/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/dsp.h -------------------------------------------------------------------------------- /firmware/inc/dsp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/dsp_driver.h -------------------------------------------------------------------------------- /firmware/inc/dsp_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/dsp_math.h -------------------------------------------------------------------------------- /firmware/inc/font8x8_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/font8x8_basic.h -------------------------------------------------------------------------------- /firmware/inc/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/power.h -------------------------------------------------------------------------------- /firmware/inc/railtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/railtask.h -------------------------------------------------------------------------------- /firmware/inc/rig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/rig.h -------------------------------------------------------------------------------- /firmware/inc/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/ui.h -------------------------------------------------------------------------------- /firmware/inc/ui_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/ui_hw.h -------------------------------------------------------------------------------- /firmware/inc/ui_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/inc/ui_parameters.h -------------------------------------------------------------------------------- /firmware/mgkokeilu2_EFR32MG1P232F256GM48.hwconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/mgkokeilu2_EFR32MG1P232F256GM48.hwconf -------------------------------------------------------------------------------- /firmware/openocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/openocd/README.md -------------------------------------------------------------------------------- /firmware/openocd/adapter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/openocd/adapter.cfg -------------------------------------------------------------------------------- /firmware/openocd/flash_v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/openocd/flash_v1.cfg -------------------------------------------------------------------------------- /firmware/openocd/flash_v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/openocd/flash_v2.cfg -------------------------------------------------------------------------------- /firmware/openocd/rtt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/openocd/rtt.cfg -------------------------------------------------------------------------------- /firmware/src/InitDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/InitDevice.c -------------------------------------------------------------------------------- /firmware/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/config.c -------------------------------------------------------------------------------- /firmware/src/debugprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/debugprint.c -------------------------------------------------------------------------------- /firmware/src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/display.c -------------------------------------------------------------------------------- /firmware/src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/dsp.c -------------------------------------------------------------------------------- /firmware/src/dsp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/dsp_driver.c -------------------------------------------------------------------------------- /firmware/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/main.c -------------------------------------------------------------------------------- /firmware/src/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/power.c -------------------------------------------------------------------------------- /firmware/src/railtask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/railtask.c -------------------------------------------------------------------------------- /firmware/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/src/ui.c -------------------------------------------------------------------------------- /firmware/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/test/.gitignore -------------------------------------------------------------------------------- /firmware/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/test/Makefile -------------------------------------------------------------------------------- /firmware/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/test/README.md -------------------------------------------------------------------------------- /firmware/test/dsp_tx_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/test/dsp_tx_test.c -------------------------------------------------------------------------------- /firmware/test/test_dsp_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/firmware/test/test_dsp_math.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/CommonTables/arm_const_structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/CommonTables/arm_const_structs.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal2.S -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix8_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix8_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_fast_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_fast_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_fast_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_fast_init_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_f32.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q15.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q31.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm111a256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm111a256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm111e256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm111e256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm113a256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm113a256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm11s12f256ga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm11s12f256ga.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm11s22f256ga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm11s22f256ga.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm121a256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm121a256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm121n256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm121n256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm123a256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm123a256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm123n256v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm123n256v2.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_acmp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_adc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_af_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_af_pins.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_af_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_af_ports.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_cmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_cryotimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_crypto.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_devinfo.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_dma_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_dma_descriptor.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_dmareq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_dmareq.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_emu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_fpueh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_fpueh.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpcrc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpio.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpio_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_gpio_p.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_i2c.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_idac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_ldma.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_ldma_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_ldma_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_letimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_leuart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_msc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_pcnt.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_prs_signals.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_romtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_romtable.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_rtcc_ret.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_timer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_timer_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_timer_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_usart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_wdog.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_wdog_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/bgm1_wdog_pch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/em_device.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/system_bgm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Include/system_bgm1.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/ARM/startup_bgm1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/ARM/startup_bgm1.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/bgm1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/bgm1.ld -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/startup_bgm1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/startup_bgm1.S -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/startup_bgm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/GCC/startup_bgm1.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/IAR/startup_bgm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/IAR/startup_bgm1.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/IAR/startup_bgm1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/IAR/startup_bgm1.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/system_bgm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/BGM1/Source/system_bgm1.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f128gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f128gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f128gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f128gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256im32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256im48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p231f256im48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f128gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f128gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f128gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f128gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p232f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p233f128gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p233f128gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p233f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p233f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_acmp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_adc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_af_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_af_pins.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_af_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_af_ports.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_cmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_cryotimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_crypto.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_devinfo.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_dma_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_dma_descriptor.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_dmareq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_dmareq.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_emu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_fpueh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_fpueh.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpcrc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpio.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpio_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_gpio_p.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_i2c.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_idac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_ldma.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_ldma_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_ldma_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_buf.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_lesense_st.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_letimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_leuart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_msc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_pcnt.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_prs_signals.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_romtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_romtable.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtc_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtc_comp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_rtcc_ret.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_smu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_timer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_timer_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_timer_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_trng.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_usart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_vdac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_vdac_opa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_vdac_opa.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_wdog.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_wdog_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/efr32fg14p_wdog_pch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/em_device.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/system_efr32fg14p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Include/system_efr32fg14p.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/ARM/startup_efr32fg14p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/ARM/startup_efr32fg14p.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/efr32fg14p.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/efr32fg14p.ld -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/startup_efr32fg14p.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/startup_efr32fg14p.S -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/startup_efr32fg14p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/GCC/startup_efr32fg14p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/IAR/startup_efr32fg14p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/IAR/startup_efr32fg14p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/IAR/startup_efr32fg14p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/IAR/startup_efr32fg14p.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/system_efr32fg14p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32FG14P/Source/system_efr32fg14p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p131f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p131f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gj43.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gj43.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256im32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256im48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p132f256im48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p133f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p133f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p231f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p231f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gj43.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gj43.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256im32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256im48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p232f256im48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p233f256gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p233f256gm48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p233f256im48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p233f256im48.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p632f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p632f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p632f256im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p632f256im32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p732f256gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p732f256gm32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p732f256im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p732f256im32.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_acmp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_adc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_af_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_af_pins.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_af_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_af_ports.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_cmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_cryotimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_crypto.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_devinfo.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_dma_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_dma_descriptor.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_dmareq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_dmareq.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_emu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_fpueh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_fpueh.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpcrc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpio.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpio_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_gpio_p.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_i2c.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_idac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_ldma.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_ldma_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_ldma_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_letimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_leuart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_msc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_pcnt.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs_ch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_prs_signals.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_romtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_romtable.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_rtcc_ret.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_timer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_timer_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_timer_cc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_usart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_wdog.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_wdog_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/efr32mg1p_wdog_pch.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/em_device.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/system_efr32mg1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Include/system_efr32mg1p.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/ARM/startup_efr32mg1p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/ARM/startup_efr32mg1p.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/efr32mg1p.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/efr32mg1p.ld -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/startup_efr32mg1p.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/startup_efr32mg1p.S -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/startup_efr32mg1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/GCC/startup_efr32mg1p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/IAR/startup_efr32mg1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/IAR/startup_efr32mg1p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/IAR/startup_efr32mg1p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/IAR/startup_efr32mg1p.s -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/system_efr32mg1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/Device/SiliconLabs/EFR32MG1P/Source/system_efr32mg1p.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/ReadMe_emlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/ReadMe_emlib.txt -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_acmp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_adc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_aes.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_assert.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_burtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_burtc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_bus.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_can.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_chip.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_cmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_common.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_core.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_cryotimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_crypto.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_csen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_csen.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_dac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_dbg.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_dma.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_ebi.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_emu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_eusart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_eusart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_gpcrc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_gpio.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_i2c.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_iadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_iadc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_idac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_int.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_lcd.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_ldma.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_lesense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_lesense.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_letimer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_leuart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_mpu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_msc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_opamp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_pcnt.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_pdm.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_prs.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_qspi.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_ramfunc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_rmu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_rtc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_rtcc.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_se.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_smu.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_system.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_timer.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_usart.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_vcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_vcmp.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_vdac.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_version.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/inc/em_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/inc/em_wdog.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_acmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_acmp.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_adc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_aes.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_assert.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_burtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_burtc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_can.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_cmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_cmu.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_core.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_cryotimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_cryotimer.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_crypto.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_csen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_csen.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_dac.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_dbg.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_dma.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_ebi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_ebi.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_emu.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_eusart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_eusart.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_gpcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_gpcrc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_gpio.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_i2c.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_iadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_iadc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_idac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_idac.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_int.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_lcd.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_ldma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_ldma.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_lesense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_lesense.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_letimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_letimer.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_leuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_leuart.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_mpu.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_msc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_opamp.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_pcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_pcnt.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_pdm.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_prs.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_qspi.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_rmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_rmu.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_rtc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_rtcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_rtcc.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_se.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_se.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_system.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_timer.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_usart.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_vcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_vcmp.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_vdac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_vdac.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/emlib/src/em_wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/emlib/src/em_wdog.c -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/autogen/librail_release/librail_efr32xg14_gcc_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/autogen/librail_release/librail_efr32xg14_gcc_release.a -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/autogen/librail_release/librail_efr32xg1_gcc_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/autogen/librail_release/librail_efr32xg1_gcc_release.a -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/chip/efr32/efr32xg1x/rail_chip_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/chip/efr32/efr32xg1x/rail_chip_specific.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_assert_error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_assert_error_codes.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_features.h -------------------------------------------------------------------------------- /gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/gecko_sdk_suite/v2.7/platform/radio/rail_lib/common/rail_types.h -------------------------------------------------------------------------------- /hardware_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v1/README.md -------------------------------------------------------------------------------- /hardware_v1/brd4151a-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v1/brd4151a-pinout.png -------------------------------------------------------------------------------- /hardware_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/README.md -------------------------------------------------------------------------------- /hardware_v2/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/connections.png -------------------------------------------------------------------------------- /hardware_v2/connections/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups/ 2 | fp-info-cache 3 | plot/ 4 | -------------------------------------------------------------------------------- /hardware_v2/connections/connections.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20221018) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /hardware_v2/connections/connections.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/connections/connections.kicad_prl -------------------------------------------------------------------------------- /hardware_v2/connections/connections.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/connections/connections.kicad_pro -------------------------------------------------------------------------------- /hardware_v2/connections/connections.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/connections/connections.kicad_sch -------------------------------------------------------------------------------- /hardware_v2/connections/crop_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/connections/crop_plot.sh -------------------------------------------------------------------------------- /hardware_v2/pcb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/.gitignore -------------------------------------------------------------------------------- /hardware_v2/pcb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/README.md -------------------------------------------------------------------------------- /hardware_v2/pcb/fix_pos_for_jlcpcb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/fix_pos_for_jlcpcb.sh -------------------------------------------------------------------------------- /hardware_v2/pcb/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/fp-lib-table -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula-rescue.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula-rescue.kicad_sym -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.dcm -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.kicad_pcb -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.kicad_prl -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.kicad_pro -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.kicad_sch -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.kicad_sym -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/18650_holder_Keystone_1043.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/18650_holder_Keystone_1043.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/BW21S.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/BW21S.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/C_0402_to_0603_HandSolder.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/C_0402_to_0603_HandSolder.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/DZ127S-22-10-55.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/DZ127S-22-10-55.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/L_0402_to_0603_HandSolder.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/L_0402_to_0603_HandSolder.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/NetTie-2_SMD_Pad0.2mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/NetTie-2_SMD_Pad0.2mm.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/NetTie-2_SMD_Pad0.3mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/NetTie-2_SMD_Pad0.3mm.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/Pad_0402_1005Metric.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/Pad_0402_1005Metric.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/Pad_1mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/Pad_1mm.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/R_0402_to_0603_HandSolder.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/R_0402_to_0603_HandSolder.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/RotaryEncoder_Alps_EC11B-Switch_Horizontal.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/RotaryEncoder_Alps_EC11B-Switch_Horizontal.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/TG2016SMN.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/TG2016SMN.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/kapula.pretty/ToolingHole.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/kapula.pretty/ToolingHole.kicad_mod -------------------------------------------------------------------------------- /hardware_v2/pcb/make_files_for_jlcpcb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/make_files_for_jlcpcb.sh -------------------------------------------------------------------------------- /hardware_v2/pcb/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/hardware_v2/pcb/sym-lib-table -------------------------------------------------------------------------------- /railconfig/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/.cproject -------------------------------------------------------------------------------- /railconfig/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | .pdm/ 3 | -------------------------------------------------------------------------------- /railconfig/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/.project -------------------------------------------------------------------------------- /railconfig/.settings/com.silabs.ss.framework.ide.project.sls.core.prefs: -------------------------------------------------------------------------------- 1 | copiedFilesOriginState={} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /railconfig/efr32-standalone-radio-config-configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/efr32-standalone-radio-config-configuration.h -------------------------------------------------------------------------------- /railconfig/efr32_radio_configurator_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/efr32_radio_configurator_log.txt -------------------------------------------------------------------------------- /railconfig/rail_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/rail_config.c -------------------------------------------------------------------------------- /railconfig/rail_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/rail_config.h -------------------------------------------------------------------------------- /railconfig/rail_test_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/rail_test_commands.txt -------------------------------------------------------------------------------- /railconfig/railconfig.isc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig/railconfig.isc -------------------------------------------------------------------------------- /railconfig_v2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/.cproject -------------------------------------------------------------------------------- /railconfig_v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | .pdm/ 3 | -------------------------------------------------------------------------------- /railconfig_v2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/.project -------------------------------------------------------------------------------- /railconfig_v2/.settings/com.silabs.ss.framework.ide.project.sls.core.prefs: -------------------------------------------------------------------------------- 1 | copiedFilesOriginState={} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /railconfig_v2/efr32-standalone-radio-config-configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/efr32-standalone-radio-config-configuration.h -------------------------------------------------------------------------------- /railconfig_v2/efr32_radio_configurator_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/efr32_radio_configurator_log.txt -------------------------------------------------------------------------------- /railconfig_v2/rail_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/rail_config.c -------------------------------------------------------------------------------- /railconfig_v2/rail_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/rail_config.h -------------------------------------------------------------------------------- /railconfig_v2/rail_test_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/rail_test_commands.txt -------------------------------------------------------------------------------- /railconfig_v2/railconfig_v2.isc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejeez/geckokapula/HEAD/railconfig_v2/railconfig_v2.isc --------------------------------------------------------------------------------