├── .github └── workflows │ ├── add_version.yml │ ├── build_apps.yml │ └── build_doc.yml ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Readme.md ├── api ├── wms_advertiser.h ├── wms_app.h ├── wms_beacon_rx.h ├── wms_beacon_tx.h ├── wms_data.h ├── wms_hardware.h ├── wms_joining.h ├── wms_memory_area.h ├── wms_otap.h ├── wms_radio_config.h ├── wms_settings.h ├── wms_sleep.h ├── wms_state.h ├── wms_storage.h ├── wms_system.h └── wms_time.h ├── board ├── bgm220-ek4314a │ ├── board.h │ └── config.mk ├── board_init.c ├── board_init.h ├── efr32_template │ ├── board.h │ └── config.mk ├── makefile ├── mdbt50q_rx │ ├── board.h │ └── config.mk ├── nrf52832_mdk_v2 │ ├── board.h │ └── config.mk ├── nrf52_template │ ├── board.h │ └── config.mk ├── pan1780 │ ├── board.h │ └── config.mk ├── pca10040 │ ├── board.h │ └── config.mk ├── pca10056 │ ├── board.h │ └── config.mk ├── pca10059 │ ├── board.h │ ├── board_custom_init.c │ ├── config.mk │ └── makefile_board.mk ├── pca10100 │ ├── board.h │ └── config.mk ├── pca10112 │ ├── board.h │ ├── board_custom_init.c │ ├── config.mk │ ├── fem_driver_nrf21540.c │ └── makefile_board.mk ├── promistel_rpi_hat │ ├── board.h │ └── config.mk ├── ruuvitag │ ├── board.h │ └── config.mk ├── silabs_brd4180b │ ├── board.h │ └── config.mk ├── silabs_brd4181b │ ├── board.h │ └── config.mk ├── silabs_brd4184a │ ├── board.h │ └── config.mk ├── silabs_brd4210a │ ├── board.h │ └── config.mk ├── silabs_brd4253a │ ├── board.h │ └── config.mk ├── silabs_brd4254a │ ├── board.h │ └── config.mk ├── silabs_brd4312a │ ├── board.h │ └── config.mk ├── tbsense2 │ ├── board.h │ └── config.mk ├── ublox_b204 │ ├── board.h │ └── config.mk └── wuerth_261101102 │ ├── board.h │ └── config.mk ├── bootloader ├── bl_hardware.c ├── bl_hardware.h ├── early_init.c ├── early_init.h ├── external_flash.c ├── external_flash.h └── makefile ├── bootloader_test ├── api │ └── bl_interface.h ├── drivers │ ├── efr32 │ │ └── usart.c │ ├── nrf52 │ │ └── usart.c │ └── usart.h ├── linker │ ├── efr32 │ │ ├── gcc_bl_test_efr32xg12pxxxf1024.ld │ │ ├── gcc_bl_test_efr32xg12pxxxf512.ld │ │ ├── gcc_bl_test_efr32xg13pxxxf512.ld │ │ ├── gcc_bl_test_efr32xg21xxxxf1024.ld │ │ ├── gcc_bl_test_efr32xg22xxxxf512.ld │ │ └── gcc_bl_test_efr32xg23xxxxf512.ld │ └── nrf52 │ │ ├── gcc_bl_test_nrf52832.ld │ │ ├── gcc_bl_test_nrf52833.ld │ │ └── gcc_bl_test_nrf52840.ld ├── main.c ├── makefile ├── print │ ├── print.c │ ├── print.h │ └── syscalls.c ├── tests │ ├── test.h │ ├── test_info.c │ ├── test_memory_areas.c │ └── test_timings.c └── timing │ ├── timing.c │ └── timing.h ├── config.mk ├── doc_src_doxy ├── a1_sdk_environment.h ├── a2_how_to_develop.h ├── a3_operation_principle.h ├── a4_application_api.h ├── a5_application_examples.h └── doc.h ├── image └── readme.md ├── libraries ├── app_persistent │ ├── app_persistent.c │ └── app_persistent.h ├── config.mk ├── control_node │ ├── control_node.c │ ├── control_node.h │ ├── control_node_int.h │ ├── control_router.c │ ├── control_router.h │ └── readme.md ├── dualmcu │ ├── api │ │ ├── DualMcuAPI.md │ │ └── figures │ │ │ ├── Fig_GenFormat.png │ │ │ └── Fig_ReqConf_IndRes.png │ ├── drivers │ │ ├── efr32 │ │ │ ├── exti.c │ │ │ ├── io.c │ │ │ └── makefile │ │ ├── io.h │ │ ├── makefile │ │ └── nrf │ │ │ ├── exti.c │ │ │ ├── io.c │ │ │ └── makefile │ ├── dualmcu_lib.c │ ├── dualmcu_lib.h │ └── waps │ │ ├── comm │ │ ├── makefile │ │ ├── uart │ │ │ ├── waps_uart.c │ │ │ ├── waps_uart.h │ │ │ └── waps_uart_power.c │ │ └── waps_comm.h │ │ ├── makefile │ │ ├── protocol │ │ ├── makefile │ │ ├── uart │ │ │ ├── waps_uart_protocol.c │ │ │ └── waps_uart_protocol.h │ │ ├── waps_protocol.c │ │ ├── waps_protocol.h │ │ └── waps_protocol_private.h │ │ ├── sap │ │ ├── attribute_frames.h │ │ ├── csap.c │ │ ├── csap.h │ │ ├── csap_frames.h │ │ ├── dsap.c │ │ ├── dsap.h │ │ ├── dsap_frames.h │ │ ├── function_codes.c │ │ ├── function_codes.h │ │ ├── lock_bits.c │ │ ├── lock_bits.h │ │ ├── msap.c │ │ ├── msap.h │ │ ├── msap_frames.h │ │ ├── multicast.c │ │ ├── multicast.h │ │ ├── persistent.c │ │ └── persistent.h │ │ ├── waddr.c │ │ ├── waddr.h │ │ ├── waps.c │ │ ├── waps.h │ │ ├── waps_buffer_sizes.h │ │ ├── waps_frames.h │ │ ├── waps_item.c │ │ ├── waps_item.h │ │ └── waps_private.h ├── libraries_init.c ├── libraries_init.h ├── local_provisioning │ ├── backend_script │ │ └── local_provisioning_tool.py │ ├── local_provisioning.c │ ├── local_provisioning.h │ └── local_provisioning.md ├── makefile ├── positioning │ ├── docs │ │ └── PosLib_integration_guide.md │ ├── poslib.c │ ├── poslib.h │ └── poslib │ │ ├── poslib_ble_beacon.c │ │ ├── poslib_ble_beacon.h │ │ ├── poslib_control.c │ │ ├── poslib_control.h │ │ ├── poslib_da.c │ │ ├── poslib_da.h │ │ ├── poslib_decode.c │ │ ├── poslib_decode.h │ │ ├── poslib_event.c │ │ ├── poslib_event.h │ │ ├── poslib_mbcn.c │ │ ├── poslib_mbcn.h │ │ ├── poslib_measurement.c │ │ ├── poslib_measurement.h │ │ ├── poslib_tlv.c │ │ └── poslib_tlv.h ├── provisioning │ ├── data.c │ ├── joining.c │ ├── provisioning.c │ ├── provisioning.h │ ├── provisioning_int.h │ └── proxy.c ├── scheduler │ ├── app_scheduler.c │ └── app_scheduler.h ├── shared_appconfig │ ├── shared_appconfig.c │ ├── shared_appconfig.h │ └── shared_appconfig.md ├── shared_beacon │ ├── shared_beacon.c │ ├── shared_beacon.h │ └── shared_beacon.md ├── shared_data │ ├── shared_data.c │ └── shared_data.h ├── shared_libdata.h ├── shared_neighbors │ ├── shared_neighbors.c │ └── shared_neighbors.h ├── shared_offline │ ├── shared_offline.c │ └── shared_offline.h └── stack_state │ ├── stack_state.c │ └── stack_state.h ├── makefile ├── makefile_app.mk ├── makefile_bootloader.mk ├── makefile_bootloader_test.mk ├── makefile_common.mk ├── makefile_stack.mk ├── mcu ├── common │ ├── cmsis │ │ ├── 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_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm4_simd.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ ├── entrypoint.s │ ├── makefile │ ├── radio │ │ ├── makefile │ │ └── radio.c │ └── start.c ├── efr │ ├── common │ │ ├── mcu.h │ │ └── vendor │ │ │ ├── efr32fg12 │ │ │ ├── efr32_gpio.h │ │ │ ├── efr32fg12p231f1024gl125.h │ │ │ ├── efr32fg12p231f1024gm48.h │ │ │ ├── efr32fg12p232f1024gl125.h │ │ │ ├── efr32fg12p232f1024gm48.h │ │ │ ├── efr32fg12p431f1024gl125.h │ │ │ ├── efr32fg12p431f1024gm48.h │ │ │ ├── efr32fg12p432f1024gl125.h │ │ │ ├── efr32fg12p432f1024gm48.h │ │ │ ├── efr32fg12p433f1024gl125.h │ │ │ ├── efr32fg12p433f1024gm48.h │ │ │ ├── efr32fg12p_acmp.h │ │ │ ├── efr32fg12p_adc.h │ │ │ ├── efr32fg12p_af_pins.h │ │ │ ├── efr32fg12p_af_ports.h │ │ │ ├── efr32fg12p_cmu.h │ │ │ ├── efr32fg12p_cryotimer.h │ │ │ ├── efr32fg12p_crypto.h │ │ │ ├── efr32fg12p_csen.h │ │ │ ├── efr32fg12p_devinfo.h │ │ │ ├── efr32fg12p_dma_descriptor.h │ │ │ ├── efr32fg12p_dmareq.h │ │ │ ├── efr32fg12p_emu.h │ │ │ ├── efr32fg12p_etm.h │ │ │ ├── efr32fg12p_fpueh.h │ │ │ ├── efr32fg12p_gpcrc.h │ │ │ ├── efr32fg12p_gpio.h │ │ │ ├── efr32fg12p_gpio_p.h │ │ │ ├── efr32fg12p_i2c.h │ │ │ ├── efr32fg12p_idac.h │ │ │ ├── efr32fg12p_ldma.h │ │ │ ├── efr32fg12p_ldma_ch.h │ │ │ ├── efr32fg12p_lesense.h │ │ │ ├── efr32fg12p_lesense_buf.h │ │ │ ├── efr32fg12p_lesense_ch.h │ │ │ ├── efr32fg12p_lesense_st.h │ │ │ ├── efr32fg12p_letimer.h │ │ │ ├── efr32fg12p_leuart.h │ │ │ ├── efr32fg12p_msc.h │ │ │ ├── efr32fg12p_pcnt.h │ │ │ ├── efr32fg12p_prs.h │ │ │ ├── efr32fg12p_prs_ch.h │ │ │ ├── efr32fg12p_prs_signals.h │ │ │ ├── efr32fg12p_rmu.h │ │ │ ├── efr32fg12p_romtable.h │ │ │ ├── efr32fg12p_rtcc.h │ │ │ ├── efr32fg12p_rtcc_cc.h │ │ │ ├── efr32fg12p_rtcc_ret.h │ │ │ ├── efr32fg12p_smu.h │ │ │ ├── efr32fg12p_timer.h │ │ │ ├── efr32fg12p_timer_cc.h │ │ │ ├── efr32fg12p_trng.h │ │ │ ├── efr32fg12p_usart.h │ │ │ ├── efr32fg12p_vdac.h │ │ │ ├── efr32fg12p_vdac_opa.h │ │ │ ├── efr32fg12p_wdog.h │ │ │ ├── efr32fg12p_wdog_pch.h │ │ │ ├── em_device_fg12.h │ │ │ ├── system_efr32fg12p.c │ │ │ └── system_efr32fg12p.h │ │ │ ├── efr32fg13 │ │ │ ├── efr32_gpio.h │ │ │ ├── efr32fg13p231f512gm32.h │ │ │ ├── efr32fg13p231f512gm48.h │ │ │ ├── efr32fg13p231f512im32.h │ │ │ ├── efr32fg13p231f512im48.h │ │ │ ├── efr32fg13p232f512gm32.h │ │ │ ├── efr32fg13p232f512gm48.h │ │ │ ├── efr32fg13p233f512gm48.h │ │ │ ├── efr32fg13p_acmp.h │ │ │ ├── efr32fg13p_adc.h │ │ │ ├── efr32fg13p_af_pins.h │ │ │ ├── efr32fg13p_af_ports.h │ │ │ ├── efr32fg13p_cmu.h │ │ │ ├── efr32fg13p_cryotimer.h │ │ │ ├── efr32fg13p_crypto.h │ │ │ ├── efr32fg13p_csen.h │ │ │ ├── efr32fg13p_devinfo.h │ │ │ ├── efr32fg13p_dma_descriptor.h │ │ │ ├── efr32fg13p_dmareq.h │ │ │ ├── efr32fg13p_emu.h │ │ │ ├── efr32fg13p_etm.h │ │ │ ├── efr32fg13p_fpueh.h │ │ │ ├── efr32fg13p_gpcrc.h │ │ │ ├── efr32fg13p_gpio.h │ │ │ ├── efr32fg13p_gpio_p.h │ │ │ ├── efr32fg13p_i2c.h │ │ │ ├── efr32fg13p_idac.h │ │ │ ├── efr32fg13p_ldma.h │ │ │ ├── efr32fg13p_ldma_ch.h │ │ │ ├── efr32fg13p_lesense.h │ │ │ ├── efr32fg13p_lesense_buf.h │ │ │ ├── efr32fg13p_lesense_ch.h │ │ │ ├── efr32fg13p_lesense_st.h │ │ │ ├── efr32fg13p_letimer.h │ │ │ ├── efr32fg13p_leuart.h │ │ │ ├── efr32fg13p_msc.h │ │ │ ├── efr32fg13p_pcnt.h │ │ │ ├── efr32fg13p_prs.h │ │ │ ├── efr32fg13p_prs_ch.h │ │ │ ├── efr32fg13p_prs_signals.h │ │ │ ├── efr32fg13p_rmu.h │ │ │ ├── efr32fg13p_romtable.h │ │ │ ├── efr32fg13p_rtcc.h │ │ │ ├── efr32fg13p_rtcc_cc.h │ │ │ ├── efr32fg13p_rtcc_ret.h │ │ │ ├── efr32fg13p_smu.h │ │ │ ├── efr32fg13p_timer.h │ │ │ ├── efr32fg13p_timer_cc.h │ │ │ ├── efr32fg13p_trng.h │ │ │ ├── efr32fg13p_usart.h │ │ │ ├── efr32fg13p_vdac.h │ │ │ ├── efr32fg13p_vdac_opa.h │ │ │ ├── efr32fg13p_wdog.h │ │ │ ├── efr32fg13p_wdog_pch.h │ │ │ ├── em_device_fg13.h │ │ │ ├── system_efr32fg13p.c │ │ │ └── system_efr32fg13p.h │ │ │ ├── efr32fg23 │ │ │ ├── Include │ │ │ │ ├── efr32fg23_acmp.h │ │ │ │ ├── efr32fg23_aes.h │ │ │ │ ├── efr32fg23_agc.h │ │ │ │ ├── efr32fg23_amuxcp.h │ │ │ │ ├── efr32fg23_bufc.h │ │ │ │ ├── efr32fg23_buram.h │ │ │ │ ├── efr32fg23_burtc.h │ │ │ │ ├── efr32fg23_cmu.h │ │ │ │ ├── efr32fg23_dcdc.h │ │ │ │ ├── efr32fg23_devinfo.h │ │ │ │ ├── efr32fg23_dma_descriptor.h │ │ │ │ ├── efr32fg23_dpll.h │ │ │ │ ├── efr32fg23_eca.h │ │ │ │ ├── efr32fg23_ecaifadc.h │ │ │ │ ├── efr32fg23_emu.h │ │ │ │ ├── efr32fg23_eusart.h │ │ │ │ ├── efr32fg23_frc.h │ │ │ │ ├── efr32fg23_fsrco.h │ │ │ │ ├── efr32fg23_gpcrc.h │ │ │ │ ├── efr32fg23_gpio.h │ │ │ │ ├── efr32fg23_gpio_port.h │ │ │ │ ├── efr32fg23_hfrco.h │ │ │ │ ├── efr32fg23_hfxo.h │ │ │ │ ├── efr32fg23_i2c.h │ │ │ │ ├── efr32fg23_iadc.h │ │ │ │ ├── efr32fg23_icache.h │ │ │ │ ├── efr32fg23_keyscan.h │ │ │ │ ├── efr32fg23_lcd.h │ │ │ │ ├── efr32fg23_lcdrf.h │ │ │ │ ├── efr32fg23_ldma.h │ │ │ │ ├── efr32fg23_ldmaxbar.h │ │ │ │ ├── efr32fg23_ldmaxbar_defines.h │ │ │ │ ├── efr32fg23_lesense.h │ │ │ │ ├── efr32fg23_letimer.h │ │ │ │ ├── efr32fg23_lfrco.h │ │ │ │ ├── efr32fg23_lfxo.h │ │ │ │ ├── efr32fg23_mailbox.h │ │ │ │ ├── efr32fg23_modem.h │ │ │ │ ├── efr32fg23_mpahbram.h │ │ │ │ ├── efr32fg23_msc.h │ │ │ │ ├── efr32fg23_pcnt.h │ │ │ │ ├── efr32fg23_pfmxpprf.h │ │ │ │ ├── efr32fg23_protimer.h │ │ │ │ ├── efr32fg23_prs.h │ │ │ │ ├── efr32fg23_prs_signals.h │ │ │ │ ├── efr32fg23_rac.h │ │ │ │ ├── efr32fg23_rfcrc.h │ │ │ │ ├── efr32fg23_scratchpad.h │ │ │ │ ├── efr32fg23_semailbox.h │ │ │ │ ├── efr32fg23_smu.h │ │ │ │ ├── efr32fg23_synth.h │ │ │ │ ├── efr32fg23_syscfg.h │ │ │ │ ├── efr32fg23_sysrtc.h │ │ │ │ ├── efr32fg23_timer.h │ │ │ │ ├── efr32fg23_ulfrco.h │ │ │ │ ├── efr32fg23_usart.h │ │ │ │ ├── efr32fg23_vdac.h │ │ │ │ ├── efr32fg23_wdog.h │ │ │ │ ├── efr32fg23a010f128gm40.h │ │ │ │ ├── efr32fg23a010f256gm40.h │ │ │ │ ├── efr32fg23a010f256gm48.h │ │ │ │ ├── efr32fg23a010f512gm40.h │ │ │ │ ├── efr32fg23a010f512gm48.h │ │ │ │ ├── efr32fg23a011f512gm40.h │ │ │ │ ├── efr32fg23a020f128gm40.h │ │ │ │ ├── efr32fg23a020f256gm40.h │ │ │ │ ├── efr32fg23a020f256gm48.h │ │ │ │ ├── efr32fg23a020f512gm40.h │ │ │ │ ├── efr32fg23a020f512gm48.h │ │ │ │ ├── efr32fg23a021f512gm40.h │ │ │ │ ├── efr32fg23b010f128gm40.h │ │ │ │ ├── efr32fg23b010f512gm48.h │ │ │ │ ├── efr32fg23b010f512im40.h │ │ │ │ ├── efr32fg23b010f512im48.h │ │ │ │ ├── efr32fg23b020f128gm40.h │ │ │ │ ├── efr32fg23b020f512im40.h │ │ │ │ ├── efr32fg23b020f512im48.h │ │ │ │ ├── em_device.h │ │ │ │ └── system_efr32fg23.h │ │ │ ├── Source │ │ │ │ ├── GCC │ │ │ │ │ ├── efr32fg23.ld │ │ │ │ │ ├── startup_efr32fg23.S │ │ │ │ │ └── startup_efr32fg23.c │ │ │ │ └── system_efr32fg23.c │ │ │ └── efr32_gpio.h │ │ │ ├── efr32mg21 │ │ │ ├── Include │ │ │ │ ├── efr32mg21_acmp.h │ │ │ │ ├── efr32mg21_aes.h │ │ │ │ ├── efr32mg21_agc.h │ │ │ │ ├── efr32mg21_amuxcp.h │ │ │ │ ├── efr32mg21_bufc.h │ │ │ │ ├── efr32mg21_buram.h │ │ │ │ ├── efr32mg21_burtc.h │ │ │ │ ├── efr32mg21_cmu.h │ │ │ │ ├── efr32mg21_devinfo.h │ │ │ │ ├── efr32mg21_dma_descriptor.h │ │ │ │ ├── efr32mg21_dpll.h │ │ │ │ ├── efr32mg21_emu.h │ │ │ │ ├── efr32mg21_frc.h │ │ │ │ ├── efr32mg21_fsrco.h │ │ │ │ ├── efr32mg21_gpcrc.h │ │ │ │ ├── efr32mg21_gpio.h │ │ │ │ ├── efr32mg21_gpio_port.h │ │ │ │ ├── efr32mg21_hfrco.h │ │ │ │ ├── efr32mg21_hfxo.h │ │ │ │ ├── efr32mg21_i2c.h │ │ │ │ ├── efr32mg21_iadc.h │ │ │ │ ├── efr32mg21_icache.h │ │ │ │ ├── efr32mg21_ldma.h │ │ │ │ ├── efr32mg21_ldmaxbar.h │ │ │ │ ├── efr32mg21_ldmaxbar_defines.h │ │ │ │ ├── efr32mg21_letimer.h │ │ │ │ ├── efr32mg21_lfrco.h │ │ │ │ ├── efr32mg21_lfxo.h │ │ │ │ ├── efr32mg21_lvgd.h │ │ │ │ ├── efr32mg21_modem.h │ │ │ │ ├── efr32mg21_msc.h │ │ │ │ ├── efr32mg21_protimer.h │ │ │ │ ├── efr32mg21_prs.h │ │ │ │ ├── efr32mg21_prs_signals.h │ │ │ │ ├── efr32mg21_rac.h │ │ │ │ ├── efr32mg21_rfcrc.h │ │ │ │ ├── efr32mg21_rtcc.h │ │ │ │ ├── efr32mg21_semailbox.h │ │ │ │ ├── efr32mg21_smu.h │ │ │ │ ├── efr32mg21_synth.h │ │ │ │ ├── efr32mg21_syscfg.h │ │ │ │ ├── efr32mg21_timer.h │ │ │ │ ├── efr32mg21_ulfrco.h │ │ │ │ ├── efr32mg21_usart.h │ │ │ │ ├── efr32mg21_wdog.h │ │ │ │ ├── efr32mg21a010f1024im32.h │ │ │ │ ├── efr32mg21a010f512im32.h │ │ │ │ ├── efr32mg21a010f768im32.h │ │ │ │ ├── efr32mg21a020f1024im32.h │ │ │ │ ├── efr32mg21a020f512im32.h │ │ │ │ ├── efr32mg21a020f768im32.h │ │ │ │ ├── efr32mg21b010f1024im32.h │ │ │ │ ├── efr32mg21b010f512im32.h │ │ │ │ ├── efr32mg21b010f768im32.h │ │ │ │ ├── efr32mg21b020f1024im32.h │ │ │ │ ├── efr32mg21b020f512im32.h │ │ │ │ ├── efr32mg21b020f768im32.h │ │ │ │ ├── em_device.h │ │ │ │ ├── rm21z000f1024im32.h │ │ │ │ └── system_efr32mg21.h │ │ │ ├── Source │ │ │ │ ├── GCC │ │ │ │ │ ├── efr32mg21.ld │ │ │ │ │ ├── startup_efr32mg21.S │ │ │ │ │ └── startup_efr32mg21.c │ │ │ │ └── system_efr32mg21.c │ │ │ └── efr32_gpio.h │ │ │ ├── efr32mg22 │ │ │ ├── Include │ │ │ │ ├── efr32mg22_aes.h │ │ │ │ ├── efr32mg22_agc.h │ │ │ │ ├── efr32mg22_amuxcp.h │ │ │ │ ├── efr32mg22_bufc.h │ │ │ │ ├── efr32mg22_buram.h │ │ │ │ ├── efr32mg22_burtc.h │ │ │ │ ├── efr32mg22_cmu.h │ │ │ │ ├── efr32mg22_cryptoacc.h │ │ │ │ ├── efr32mg22_dcdc.h │ │ │ │ ├── efr32mg22_devinfo.h │ │ │ │ ├── efr32mg22_dma_descriptor.h │ │ │ │ ├── efr32mg22_dpll.h │ │ │ │ ├── efr32mg22_emu.h │ │ │ │ ├── efr32mg22_eusart.h │ │ │ │ ├── efr32mg22_frc.h │ │ │ │ ├── efr32mg22_fsrco.h │ │ │ │ ├── efr32mg22_gpcrc.h │ │ │ │ ├── efr32mg22_gpio.h │ │ │ │ ├── efr32mg22_gpio_port.h │ │ │ │ ├── efr32mg22_hfrco.h │ │ │ │ ├── efr32mg22_hfxo.h │ │ │ │ ├── efr32mg22_i2c.h │ │ │ │ ├── efr32mg22_iadc.h │ │ │ │ ├── efr32mg22_icache.h │ │ │ │ ├── efr32mg22_ldma.h │ │ │ │ ├── efr32mg22_ldmaxbar.h │ │ │ │ ├── efr32mg22_ldmaxbar_defines.h │ │ │ │ ├── efr32mg22_letimer.h │ │ │ │ ├── efr32mg22_lfrco.h │ │ │ │ ├── efr32mg22_lfxo.h │ │ │ │ ├── efr32mg22_mailbox.h │ │ │ │ ├── efr32mg22_modem.h │ │ │ │ ├── efr32mg22_msc.h │ │ │ │ ├── efr32mg22_pdm.h │ │ │ │ ├── efr32mg22_protimer.h │ │ │ │ ├── efr32mg22_prs.h │ │ │ │ ├── efr32mg22_prs_signals.h │ │ │ │ ├── efr32mg22_rac.h │ │ │ │ ├── efr32mg22_rfcrc.h │ │ │ │ ├── efr32mg22_rfsense.h │ │ │ │ ├── efr32mg22_rtcc.h │ │ │ │ ├── efr32mg22_smu.h │ │ │ │ ├── efr32mg22_synth.h │ │ │ │ ├── efr32mg22_syscfg.h │ │ │ │ ├── efr32mg22_timer.h │ │ │ │ ├── efr32mg22_ulfrco.h │ │ │ │ ├── efr32mg22_usart.h │ │ │ │ ├── efr32mg22_wdog.h │ │ │ │ ├── efr32mg22a224f512im40.h │ │ │ │ ├── efr32mg22c224f512gn32.h │ │ │ │ ├── efr32mg22c224f512im32.h │ │ │ │ ├── efr32mg22c224f512im40.h │ │ │ │ ├── em_device.h │ │ │ │ └── system_efr32mg22.h │ │ │ ├── Source │ │ │ │ ├── GCC │ │ │ │ │ ├── efr32mg22.ld │ │ │ │ │ ├── startup_efr32mg22.S │ │ │ │ │ └── startup_efr32mg22.c │ │ │ │ └── system_efr32mg22.c │ │ │ └── efr32_gpio.h │ │ │ ├── em_adc.c │ │ │ ├── em_adc.h │ │ │ ├── em_assert.h │ │ │ ├── em_bus.h │ │ │ ├── em_chip.h │ │ │ ├── em_cmu.c │ │ │ ├── em_cmu.h │ │ │ ├── em_cmu_compat.h │ │ │ ├── em_common.h │ │ │ ├── em_core.c │ │ │ ├── em_core.h │ │ │ ├── em_device.h │ │ │ ├── em_emu.c │ │ │ ├── em_emu.h │ │ │ ├── em_gpio.c │ │ │ ├── em_gpio.h │ │ │ ├── em_iadc.c │ │ │ ├── em_iadc.h │ │ │ ├── em_ldma.c │ │ │ ├── em_ldma.h │ │ │ ├── em_prs.c │ │ │ ├── em_prs.h │ │ │ ├── em_ramfunc.h │ │ │ ├── em_system.h │ │ │ ├── em_usart.c │ │ │ ├── em_usart.h │ │ │ └── rail_lib │ │ │ ├── chip │ │ │ └── efr32 │ │ │ │ └── efr32xg2x │ │ │ │ └── rail_chip_specific.h │ │ │ └── common │ │ │ ├── rail_features.h │ │ │ └── rail_types.h │ ├── efr32 │ │ ├── config.mk │ │ ├── hal │ │ │ ├── board_usart.h │ │ │ ├── button.c │ │ │ ├── ds.c │ │ │ ├── hal.c │ │ │ ├── i2c.c │ │ │ ├── led.c │ │ │ ├── makefile │ │ │ ├── power.c │ │ │ ├── radio │ │ │ │ ├── radio_power_table_efr32xg12_19dBm.h │ │ │ │ ├── radio_power_table_efr32xg21_20dbm.h │ │ │ │ ├── radio_power_table_efr32xg23_13dbm.h │ │ │ │ ├── radio_power_table_efr32xg23_16dbm.h │ │ │ │ └── radio_power_table_efr32xg23_20dbm.h │ │ │ ├── uniqueId.h │ │ │ ├── usart.c │ │ │ ├── usart_dma.c │ │ │ └── voltage.c │ │ ├── ini_files │ │ │ ├── efr32xg12pxxxf1024_app.ini │ │ │ ├── efr32xg12pxxxf1024_wp.ini │ │ │ ├── efr32xg12pxxxf512_app.ini │ │ │ ├── efr32xg12pxxxf512_wp.ini │ │ │ ├── efr32xg21xxxxf1024_app.ini │ │ │ ├── efr32xg21xxxxf1024_wp.ini │ │ │ ├── efr32xg21xxxxf512_app.ini │ │ │ ├── efr32xg21xxxxf512_wp.ini │ │ │ ├── efr32xg21xxxxf768_app.ini │ │ │ ├── efr32xg21xxxxf768_wp.ini │ │ │ ├── efr32xg22xxxxf512_app.ini │ │ │ ├── efr32xg22xxxxf512_wp.ini │ │ │ ├── efr32xg23xxxxf512_app.ini │ │ │ └── efr32xg23xxxxf512_wp.ini │ │ └── linker │ │ │ ├── gcc_app_efr32xg12pxxxf1024.ld │ │ │ ├── gcc_app_efr32xg12pxxxf512.ld │ │ │ ├── gcc_app_efr32xg21xxxxf1024.ld │ │ │ ├── gcc_app_efr32xg21xxxxf512.ld │ │ │ ├── gcc_app_efr32xg21xxxxf768.ld │ │ │ ├── gcc_app_efr32xg22xxxxf512.ld │ │ │ ├── gcc_app_efr32xg23xxxxf512.ld │ │ │ ├── gcc_bl_efr32xg12pxxxf1024.ld │ │ │ ├── gcc_bl_efr32xg12pxxxf512.ld │ │ │ ├── gcc_bl_efr32xg21xxxxf1024.ld │ │ │ ├── gcc_bl_efr32xg21xxxxf512.ld │ │ │ ├── gcc_bl_efr32xg21xxxxf768.ld │ │ │ ├── gcc_bl_efr32xg22xxxxf512.ld │ │ │ └── gcc_bl_efr32xg23xxxxf512.ld │ └── makefile ├── hal_api │ ├── button.h │ ├── ds.h │ ├── hal_api.h │ ├── hw_delay.h │ ├── i2c.h │ ├── led.h │ ├── makefile │ ├── persistent.h │ ├── power.h │ ├── radio.h │ ├── spi.h │ ├── usart.h │ └── voltage.h └── nrf │ ├── common │ ├── hal │ │ ├── button.c │ │ ├── ds.c │ │ ├── hal.c │ │ ├── hw_delay.c │ │ ├── led.c │ │ ├── persistent.c │ │ └── spi.c │ ├── mcu.h │ └── vendor │ │ ├── drivers │ │ ├── nrfx_common.h │ │ └── nrfx_errors.h │ │ ├── get_vendor_files.py │ │ ├── get_vendor_files.sh │ │ ├── hal │ │ ├── nrf_common.h │ │ ├── nrf_gpio.h │ │ ├── nrf_gpiote.h │ │ ├── nrf_spim.h │ │ ├── nrf_timer.h │ │ └── nrf_uarte.h │ │ ├── mdk │ │ ├── compiler_abstraction.h │ │ ├── nrf.h │ │ ├── nrf51_to_nrf52.h │ │ ├── nrf51_to_nrf52840.h │ │ ├── nrf52.h │ │ ├── nrf52832_peripherals.h │ │ ├── nrf52833.h │ │ ├── nrf52833_bitfields.h │ │ ├── nrf52833_peripherals.h │ │ ├── nrf52840.h │ │ ├── nrf52840_bitfields.h │ │ ├── nrf52840_peripherals.h │ │ ├── nrf52_bitfields.h │ │ ├── nrf52_name_change.h │ │ ├── nrf52_to_nrf52833.h │ │ ├── nrf52_to_nrf52840.h │ │ ├── nrf9160.h │ │ ├── nrf9160_bitfields.h │ │ ├── nrf9160_name_change.h │ │ ├── nrf9160_peripherals.h │ │ ├── nrf_peripherals.h │ │ ├── system_nrf.h │ │ ├── system_nrf52.h │ │ ├── system_nrf52833.h │ │ ├── system_nrf52840.h │ │ └── system_nrf9160.h │ │ ├── nrfx.h │ │ └── templates │ │ ├── nrfx_config.h │ │ ├── nrfx_config_nrf52832.h │ │ ├── nrfx_config_nrf52833.h │ │ ├── nrfx_config_nrf52840.h │ │ ├── nrfx_config_nrf9160.h │ │ └── nrfx_glue.h │ ├── makefile │ ├── nrf52 │ ├── config.mk │ ├── hal │ │ ├── i2c.c │ │ ├── makefile │ │ ├── power.c │ │ ├── radio │ │ │ └── radio_power_table_nrf52840_4dBm.h │ │ ├── uniqueId.h │ │ ├── usart.c │ │ ├── usart_dma.c │ │ ├── usart_usb.c │ │ ├── usb_uart │ │ │ ├── dcd_nrf5x.c │ │ │ ├── makefile │ │ │ ├── tusb_config.h │ │ │ ├── usb_descriptors.c │ │ │ ├── usb_wrapper.c │ │ │ └── usb_wrapper.h │ │ ├── voltage_52832.c │ │ └── voltage_52833_52840.c │ ├── ini_files │ │ ├── nrf52832_app.ini │ │ ├── nrf52832_wp.ini │ │ ├── nrf52833_app.ini │ │ ├── nrf52833_wp.ini │ │ ├── nrf52840_app.ini │ │ └── nrf52840_wp.ini │ └── linker │ │ ├── gcc_app_nrf52832.ld │ │ ├── gcc_app_nrf52833.ld │ │ ├── gcc_app_nrf52840.ld │ │ ├── gcc_bl_nrf52832.ld │ │ ├── gcc_bl_nrf52833.ld │ │ └── gcc_bl_nrf52840.ld │ └── nrf91 │ ├── config.mk │ ├── hal │ ├── i2c.c │ ├── makefile │ ├── power.c │ ├── uniqueId.h │ └── usart_dma.c │ ├── ini_files │ ├── nrf9160_app.ini │ ├── nrf9160_platform.ini │ └── nrf9160_wp.ini │ └── linker │ ├── gcc_app_nrf9160.ld │ └── gcc_bl_nrf9160.ld ├── projects └── doxygen │ ├── Dockerfile │ ├── Doxyfile.template │ ├── DoxygenLayout.xml │ ├── footer.html │ ├── generate_doxy.sh │ ├── header.html │ ├── media │ ├── addressing.png │ ├── alert.jpg │ ├── communication_directions.png │ ├── image1.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ ├── main_components.png │ └── small_logo.png │ ├── search.js │ ├── template │ ├── doc.tex │ ├── preamble.tex │ └── wm-logo.png │ └── wirepas_custom.css ├── source ├── Readme.md ├── example_apps │ ├── Readme.md │ ├── battery_voltage_read_app │ │ ├── Readme.md │ │ ├── app.c │ │ ├── config.mk │ │ └── makefile │ ├── ble_scanner │ │ ├── app.c │ │ ├── backend_scripts │ │ │ ├── beacon_scanner_config.py │ │ │ └── beacon_scanner_rx.py │ │ ├── ble_scanner.c │ │ ├── ble_scanner.h │ │ ├── config.mk │ │ ├── config_dualmcu.mk │ │ └── makefile │ ├── control_node │ │ ├── app.c │ │ ├── common.h │ │ ├── config.mk │ │ ├── makefile │ │ └── readme.md │ ├── control_router │ │ ├── app.c │ │ ├── config.mk │ │ ├── makefile │ │ └── readme.md │ ├── custom_app │ │ ├── app.c │ │ ├── config.mk │ │ └── makefile │ ├── evaluation_app │ │ ├── Readme.md │ │ ├── app.c │ │ ├── backend_scripts │ │ │ ├── Readme.md │ │ │ └── script_evaluation_app.py │ │ ├── config.mk │ │ └── makefile │ ├── low_latency_app │ │ ├── Readme.md │ │ ├── app.c │ │ ├── backend_scripts │ │ │ ├── Readme.md │ │ │ └── script_lowlatency_app.py │ │ ├── config.mk │ │ └── makefile │ ├── minimal_app │ │ ├── app.c │ │ ├── config.mk │ │ └── makefile │ └── ruuvi_evk │ │ ├── app.c │ │ ├── app_config.c │ │ ├── bme280_wrapper.c │ │ ├── config.mk │ │ ├── docs │ │ ├── Dockerfile │ │ ├── Doxyfile │ │ ├── censored_ruuvi_app_note.rst │ │ ├── generate_doxy.sh │ │ ├── ruuvi_application_note.pdf │ │ ├── ruuvi_evk.pdf │ │ ├── template │ │ │ ├── doc.tex │ │ │ ├── preamble.tex │ │ │ └── wm-logo.png │ │ └── wirepas_logo_2016_slogan_RGB.png │ │ ├── format_data.c │ │ ├── helpers │ │ ├── README.md │ │ ├── README.pdf │ │ ├── app_config_generator.py │ │ ├── appconfig.yaml │ │ └── requirements.txt │ │ ├── include │ │ ├── app_config.h │ │ ├── bme280_wrapper.h │ │ ├── format_data.h │ │ ├── lis2dh12_wrapper.h │ │ └── main_page.h │ │ ├── lis2dh12_wrapper.c │ │ └── makefile ├── reference_apps │ ├── Readme.md │ ├── dualmcu_app │ │ ├── app.c │ │ ├── config.mk │ │ ├── gencustomscratchpad.py │ │ └── makefile │ └── positioning_app │ │ ├── app.c │ │ ├── config.mk │ │ ├── docs │ │ └── PosApp_guide.md │ │ ├── gpio.h │ │ ├── gpio_efr32.c │ │ ├── gpio_nrf52.c │ │ ├── makefile │ │ ├── motion │ │ ├── acc_interface.h │ │ ├── lis2 │ │ │ ├── lis2_dev.h │ │ │ ├── lis2_dev_i2c.c │ │ │ ├── lis2_dev_spi.c │ │ │ ├── lis2dh12_wrapper.c │ │ │ ├── lis2dh12_wrapper.h │ │ │ ├── lis2dw12_wrapper.c │ │ │ └── lis2dw12_wrapper.h │ │ ├── makefile_motion.mk │ │ ├── motion.c │ │ └── motion.h │ │ ├── persistent_config │ │ ├── config.yml │ │ ├── config_v2.yml │ │ ├── genConfigHex.py │ │ ├── layout_v1.yml │ │ ├── layout_v2.yml │ │ └── requirements.txt │ │ ├── posapp_settings.c │ │ └── posapp_settings.h └── unitary_apps │ ├── Readme.md │ ├── aes │ ├── app.c │ ├── config.mk │ └── makefile │ ├── app_persistent │ ├── README.md │ ├── app.c │ ├── config.mk │ └── makefile │ ├── appconfig │ ├── app.c │ ├── config.mk │ └── makefile │ ├── basic_interrupt │ ├── app.c │ ├── config.mk │ └── makefile │ ├── ble_tx │ ├── app.c │ ├── config.mk │ └── makefile │ ├── blink │ ├── app.c │ ├── config.mk │ └── makefile │ ├── diradv │ ├── app.c │ ├── config.mk │ └── makefile │ ├── local_provisioning │ ├── app.c │ ├── config.mk │ └── makefile │ ├── nfc │ ├── app.c │ ├── config.mk │ ├── drivers │ │ ├── makefile │ │ └── nrf52 │ │ │ └── nfc_hw.c │ ├── lib │ │ ├── ndef.c │ │ ├── ndef.h │ │ ├── nfc_hw.h │ │ ├── t2_emulation.c │ │ ├── t2_emulation.h │ │ ├── tlv.c │ │ └── tlv.h │ └── makefile │ ├── provisioning_joining_node │ ├── app.c │ ├── config.mk │ ├── config.yml │ ├── config_insecure.yml │ ├── config_secure.yml │ ├── genConfigHex.py │ ├── makefile │ ├── storage.h │ ├── storage_chipid.c │ └── storage_memarea.c │ ├── provisioning_proxy │ ├── app.c │ ├── config.mk │ └── makefile │ ├── scheduler │ ├── app.c │ ├── config.mk │ └── makefile │ ├── shared_data │ ├── README.md │ ├── app.c │ ├── config.mk │ └── makefile │ └── tinycbor │ ├── app.c │ ├── config.mk │ └── makefile ├── tools ├── bootloader_config.py ├── check_python.py ├── dependency.json ├── firmware_selector.py ├── genhex.py ├── genscratchpad.py ├── hextoarray32.py ├── hextool.py ├── scratchpadinfo.py ├── sdk_builder.py ├── sdk_explorer.py └── sdk_wizard.py ├── util ├── aessw.c ├── aessw.h ├── api.c ├── api.h ├── bitfield.h ├── crc.c ├── crc.h ├── debug_log.h ├── doublebuffer.h ├── makefile ├── node_configuration.h ├── pack.c ├── pack.h ├── random.c ├── random.h ├── ringbuffer.h ├── sl_list.c ├── sl_list.h ├── syscalls.c ├── tinyaes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── aes.c │ ├── aes.h │ ├── aes.hpp │ ├── conanfile.py │ ├── library.json │ ├── test.c │ ├── test.cpp │ ├── test_package │ │ ├── CMakeLists.txt │ │ └── conanfile.py │ └── unlicense.txt ├── tinycbor │ ├── .appveyor.yml │ ├── .tag │ ├── .travis.yml │ ├── Doxyfile │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── TODO │ ├── VERSION │ ├── examples │ │ ├── examples.pro │ │ ├── simplereader.c │ │ └── simplereader.pro │ ├── scripts │ │ ├── maketag.pl │ │ └── update-docs.sh │ ├── src │ │ ├── cbor.dox │ │ ├── cbor.h │ │ ├── cborencoder.c │ │ ├── cborencoder_close_container_checked.c │ │ ├── cborerrorstrings.c │ │ ├── cborinternal_p.h │ │ ├── cborjson.h │ │ ├── cborparser.c │ │ ├── cborparser_dup_string.c │ │ ├── cborpretty.c │ │ ├── cborpretty_stdio.c │ │ ├── cbortojson.c │ │ ├── cborvalidation.c │ │ ├── compilersupport_p.h │ │ ├── open_memstream.c │ │ ├── parsetags.pl │ │ ├── src.pri │ │ ├── tags.txt │ │ ├── tinycbor-version.h │ │ ├── tinycbor.pro │ │ └── utf8_p.h │ ├── tests │ │ ├── c90 │ │ │ ├── c90.pro │ │ │ └── tst_c90.c │ │ ├── cpp │ │ │ ├── cpp.pro │ │ │ └── tst_cpp.cpp │ │ ├── encoder │ │ │ ├── encoder.pro │ │ │ └── tst_encoder.cpp │ │ ├── parser │ │ │ ├── parser.pro │ │ │ └── tst_parser.cpp │ │ ├── tests.pro │ │ └── tojson │ │ │ ├── tojson.pro │ │ │ └── tst_tojson.cpp │ ├── tinycbor.pc.in │ └── tools │ │ ├── cbordump │ │ ├── cbordump.c │ │ └── cbordump.pro │ │ └── json2cbor │ │ ├── json2cbor.c │ │ └── json2cbor.pro ├── tlv.c ├── tlv.h ├── uart_print.c ├── uart_print.h ├── util.c └── util.h └── version.txt /.github/workflows/add_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/.github/workflows/add_version.yml -------------------------------------------------------------------------------- /.github/workflows/build_apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/.github/workflows/build_apps.yml -------------------------------------------------------------------------------- /.github/workflows/build_doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/.github/workflows/build_doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/Readme.md -------------------------------------------------------------------------------- /api/wms_advertiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_advertiser.h -------------------------------------------------------------------------------- /api/wms_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_app.h -------------------------------------------------------------------------------- /api/wms_beacon_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_beacon_rx.h -------------------------------------------------------------------------------- /api/wms_beacon_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_beacon_tx.h -------------------------------------------------------------------------------- /api/wms_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_data.h -------------------------------------------------------------------------------- /api/wms_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_hardware.h -------------------------------------------------------------------------------- /api/wms_joining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_joining.h -------------------------------------------------------------------------------- /api/wms_memory_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_memory_area.h -------------------------------------------------------------------------------- /api/wms_otap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_otap.h -------------------------------------------------------------------------------- /api/wms_radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_radio_config.h -------------------------------------------------------------------------------- /api/wms_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_settings.h -------------------------------------------------------------------------------- /api/wms_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_sleep.h -------------------------------------------------------------------------------- /api/wms_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_state.h -------------------------------------------------------------------------------- /api/wms_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_storage.h -------------------------------------------------------------------------------- /api/wms_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_system.h -------------------------------------------------------------------------------- /api/wms_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/api/wms_time.h -------------------------------------------------------------------------------- /board/bgm220-ek4314a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/bgm220-ek4314a/board.h -------------------------------------------------------------------------------- /board/bgm220-ek4314a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/bgm220-ek4314a/config.mk -------------------------------------------------------------------------------- /board/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/board_init.c -------------------------------------------------------------------------------- /board/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/board_init.h -------------------------------------------------------------------------------- /board/efr32_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/efr32_template/board.h -------------------------------------------------------------------------------- /board/efr32_template/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/efr32_template/config.mk -------------------------------------------------------------------------------- /board/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/makefile -------------------------------------------------------------------------------- /board/mdbt50q_rx/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/mdbt50q_rx/board.h -------------------------------------------------------------------------------- /board/mdbt50q_rx/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/mdbt50q_rx/config.mk -------------------------------------------------------------------------------- /board/nrf52832_mdk_v2/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/nrf52832_mdk_v2/board.h -------------------------------------------------------------------------------- /board/nrf52832_mdk_v2/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/nrf52832_mdk_v2/config.mk -------------------------------------------------------------------------------- /board/nrf52_template/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/nrf52_template/board.h -------------------------------------------------------------------------------- /board/nrf52_template/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/nrf52_template/config.mk -------------------------------------------------------------------------------- /board/pan1780/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pan1780/board.h -------------------------------------------------------------------------------- /board/pan1780/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pan1780/config.mk -------------------------------------------------------------------------------- /board/pca10040/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10040/board.h -------------------------------------------------------------------------------- /board/pca10040/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10040/config.mk -------------------------------------------------------------------------------- /board/pca10056/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10056/board.h -------------------------------------------------------------------------------- /board/pca10056/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10056/config.mk -------------------------------------------------------------------------------- /board/pca10059/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10059/board.h -------------------------------------------------------------------------------- /board/pca10059/board_custom_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10059/board_custom_init.c -------------------------------------------------------------------------------- /board/pca10059/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10059/config.mk -------------------------------------------------------------------------------- /board/pca10059/makefile_board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10059/makefile_board.mk -------------------------------------------------------------------------------- /board/pca10100/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10100/board.h -------------------------------------------------------------------------------- /board/pca10100/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10100/config.mk -------------------------------------------------------------------------------- /board/pca10112/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10112/board.h -------------------------------------------------------------------------------- /board/pca10112/board_custom_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10112/board_custom_init.c -------------------------------------------------------------------------------- /board/pca10112/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10112/config.mk -------------------------------------------------------------------------------- /board/pca10112/fem_driver_nrf21540.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10112/fem_driver_nrf21540.c -------------------------------------------------------------------------------- /board/pca10112/makefile_board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/pca10112/makefile_board.mk -------------------------------------------------------------------------------- /board/promistel_rpi_hat/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/promistel_rpi_hat/board.h -------------------------------------------------------------------------------- /board/promistel_rpi_hat/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/promistel_rpi_hat/config.mk -------------------------------------------------------------------------------- /board/ruuvitag/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/ruuvitag/board.h -------------------------------------------------------------------------------- /board/ruuvitag/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/ruuvitag/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4180b/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4180b/board.h -------------------------------------------------------------------------------- /board/silabs_brd4180b/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4180b/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4181b/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4181b/board.h -------------------------------------------------------------------------------- /board/silabs_brd4181b/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4181b/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4184a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4184a/board.h -------------------------------------------------------------------------------- /board/silabs_brd4184a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4184a/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4210a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4210a/board.h -------------------------------------------------------------------------------- /board/silabs_brd4210a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4210a/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4253a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4253a/board.h -------------------------------------------------------------------------------- /board/silabs_brd4253a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4253a/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4254a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4254a/board.h -------------------------------------------------------------------------------- /board/silabs_brd4254a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4254a/config.mk -------------------------------------------------------------------------------- /board/silabs_brd4312a/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4312a/board.h -------------------------------------------------------------------------------- /board/silabs_brd4312a/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/silabs_brd4312a/config.mk -------------------------------------------------------------------------------- /board/tbsense2/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/tbsense2/board.h -------------------------------------------------------------------------------- /board/tbsense2/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/tbsense2/config.mk -------------------------------------------------------------------------------- /board/ublox_b204/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/ublox_b204/board.h -------------------------------------------------------------------------------- /board/ublox_b204/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/ublox_b204/config.mk -------------------------------------------------------------------------------- /board/wuerth_261101102/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/wuerth_261101102/board.h -------------------------------------------------------------------------------- /board/wuerth_261101102/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/board/wuerth_261101102/config.mk -------------------------------------------------------------------------------- /bootloader/bl_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/bl_hardware.c -------------------------------------------------------------------------------- /bootloader/bl_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/bl_hardware.h -------------------------------------------------------------------------------- /bootloader/early_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/early_init.c -------------------------------------------------------------------------------- /bootloader/early_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/early_init.h -------------------------------------------------------------------------------- /bootloader/external_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/external_flash.c -------------------------------------------------------------------------------- /bootloader/external_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/external_flash.h -------------------------------------------------------------------------------- /bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader/makefile -------------------------------------------------------------------------------- /bootloader_test/api/bl_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/api/bl_interface.h -------------------------------------------------------------------------------- /bootloader_test/drivers/efr32/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/drivers/efr32/usart.c -------------------------------------------------------------------------------- /bootloader_test/drivers/nrf52/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/drivers/nrf52/usart.c -------------------------------------------------------------------------------- /bootloader_test/drivers/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/drivers/usart.h -------------------------------------------------------------------------------- /bootloader_test/linker/nrf52/gcc_bl_test_nrf52832.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/linker/nrf52/gcc_bl_test_nrf52832.ld -------------------------------------------------------------------------------- /bootloader_test/linker/nrf52/gcc_bl_test_nrf52833.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/linker/nrf52/gcc_bl_test_nrf52833.ld -------------------------------------------------------------------------------- /bootloader_test/linker/nrf52/gcc_bl_test_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/linker/nrf52/gcc_bl_test_nrf52840.ld -------------------------------------------------------------------------------- /bootloader_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/main.c -------------------------------------------------------------------------------- /bootloader_test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/makefile -------------------------------------------------------------------------------- /bootloader_test/print/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/print/print.c -------------------------------------------------------------------------------- /bootloader_test/print/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/print/print.h -------------------------------------------------------------------------------- /bootloader_test/print/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/print/syscalls.c -------------------------------------------------------------------------------- /bootloader_test/tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/tests/test.h -------------------------------------------------------------------------------- /bootloader_test/tests/test_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/tests/test_info.c -------------------------------------------------------------------------------- /bootloader_test/tests/test_memory_areas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/tests/test_memory_areas.c -------------------------------------------------------------------------------- /bootloader_test/tests/test_timings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/tests/test_timings.c -------------------------------------------------------------------------------- /bootloader_test/timing/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/timing/timing.c -------------------------------------------------------------------------------- /bootloader_test/timing/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/bootloader_test/timing/timing.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/config.mk -------------------------------------------------------------------------------- /doc_src_doxy/a1_sdk_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/a1_sdk_environment.h -------------------------------------------------------------------------------- /doc_src_doxy/a2_how_to_develop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/a2_how_to_develop.h -------------------------------------------------------------------------------- /doc_src_doxy/a3_operation_principle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/a3_operation_principle.h -------------------------------------------------------------------------------- /doc_src_doxy/a4_application_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/a4_application_api.h -------------------------------------------------------------------------------- /doc_src_doxy/a5_application_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/a5_application_examples.h -------------------------------------------------------------------------------- /doc_src_doxy/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/doc_src_doxy/doc.h -------------------------------------------------------------------------------- /image/readme.md: -------------------------------------------------------------------------------- 1 | Unpack your Wirepas binaries here. 2 | -------------------------------------------------------------------------------- /libraries/app_persistent/app_persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/app_persistent/app_persistent.c -------------------------------------------------------------------------------- /libraries/app_persistent/app_persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/app_persistent/app_persistent.h -------------------------------------------------------------------------------- /libraries/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/config.mk -------------------------------------------------------------------------------- /libraries/control_node/control_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/control_node.c -------------------------------------------------------------------------------- /libraries/control_node/control_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/control_node.h -------------------------------------------------------------------------------- /libraries/control_node/control_node_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/control_node_int.h -------------------------------------------------------------------------------- /libraries/control_node/control_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/control_router.c -------------------------------------------------------------------------------- /libraries/control_node/control_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/control_router.h -------------------------------------------------------------------------------- /libraries/control_node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/control_node/readme.md -------------------------------------------------------------------------------- /libraries/dualmcu/api/DualMcuAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/api/DualMcuAPI.md -------------------------------------------------------------------------------- /libraries/dualmcu/api/figures/Fig_GenFormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/api/figures/Fig_GenFormat.png -------------------------------------------------------------------------------- /libraries/dualmcu/api/figures/Fig_ReqConf_IndRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/api/figures/Fig_ReqConf_IndRes.png -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/efr32/exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/efr32/exti.c -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/efr32/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/efr32/io.c -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/efr32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/efr32/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/io.h -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/nrf/exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/nrf/exti.c -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/nrf/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/nrf/io.c -------------------------------------------------------------------------------- /libraries/dualmcu/drivers/nrf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/drivers/nrf/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/dualmcu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/dualmcu_lib.c -------------------------------------------------------------------------------- /libraries/dualmcu/dualmcu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/dualmcu_lib.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/comm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/comm/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/waps/comm/uart/waps_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/comm/uart/waps_uart.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/comm/uart/waps_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/comm/uart/waps_uart.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/comm/uart/waps_uart_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/comm/uart/waps_uart_power.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/comm/waps_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/comm/waps_comm.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/waps/protocol/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/protocol/makefile -------------------------------------------------------------------------------- /libraries/dualmcu/waps/protocol/waps_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/protocol/waps_protocol.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/protocol/waps_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/protocol/waps_protocol.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/protocol/waps_protocol_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/protocol/waps_protocol_private.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/attribute_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/attribute_frames.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/csap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/csap.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/csap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/csap.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/csap_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/csap_frames.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/dsap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/dsap.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/dsap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/dsap.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/dsap_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/dsap_frames.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/function_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/function_codes.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/function_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/function_codes.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/lock_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/lock_bits.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/lock_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/lock_bits.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/msap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/msap.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/msap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/msap.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/msap_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/msap_frames.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/multicast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/multicast.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/multicast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/multicast.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/persistent.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/sap/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/sap/persistent.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waddr.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waddr.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps_buffer_sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps_buffer_sizes.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps_frames.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps_item.c -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps_item.h -------------------------------------------------------------------------------- /libraries/dualmcu/waps/waps_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/dualmcu/waps/waps_private.h -------------------------------------------------------------------------------- /libraries/libraries_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/libraries_init.c -------------------------------------------------------------------------------- /libraries/libraries_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/libraries_init.h -------------------------------------------------------------------------------- /libraries/local_provisioning/local_provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/local_provisioning/local_provisioning.c -------------------------------------------------------------------------------- /libraries/local_provisioning/local_provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/local_provisioning/local_provisioning.h -------------------------------------------------------------------------------- /libraries/local_provisioning/local_provisioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/local_provisioning/local_provisioning.md -------------------------------------------------------------------------------- /libraries/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/makefile -------------------------------------------------------------------------------- /libraries/positioning/docs/PosLib_integration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/docs/PosLib_integration_guide.md -------------------------------------------------------------------------------- /libraries/positioning/poslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib.c -------------------------------------------------------------------------------- /libraries/positioning/poslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_ble_beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_ble_beacon.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_ble_beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_ble_beacon.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_control.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_control.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_da.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_da.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_da.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_decode.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_decode.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_event.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_event.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_mbcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_mbcn.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_mbcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_mbcn.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_measurement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_measurement.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_measurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_measurement.h -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_tlv.c -------------------------------------------------------------------------------- /libraries/positioning/poslib/poslib_tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/positioning/poslib/poslib_tlv.h -------------------------------------------------------------------------------- /libraries/provisioning/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/data.c -------------------------------------------------------------------------------- /libraries/provisioning/joining.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/joining.c -------------------------------------------------------------------------------- /libraries/provisioning/provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/provisioning.c -------------------------------------------------------------------------------- /libraries/provisioning/provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/provisioning.h -------------------------------------------------------------------------------- /libraries/provisioning/provisioning_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/provisioning_int.h -------------------------------------------------------------------------------- /libraries/provisioning/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/provisioning/proxy.c -------------------------------------------------------------------------------- /libraries/scheduler/app_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/scheduler/app_scheduler.c -------------------------------------------------------------------------------- /libraries/scheduler/app_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/scheduler/app_scheduler.h -------------------------------------------------------------------------------- /libraries/shared_appconfig/shared_appconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_appconfig/shared_appconfig.c -------------------------------------------------------------------------------- /libraries/shared_appconfig/shared_appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_appconfig/shared_appconfig.h -------------------------------------------------------------------------------- /libraries/shared_appconfig/shared_appconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_appconfig/shared_appconfig.md -------------------------------------------------------------------------------- /libraries/shared_beacon/shared_beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_beacon/shared_beacon.c -------------------------------------------------------------------------------- /libraries/shared_beacon/shared_beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_beacon/shared_beacon.h -------------------------------------------------------------------------------- /libraries/shared_beacon/shared_beacon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_beacon/shared_beacon.md -------------------------------------------------------------------------------- /libraries/shared_data/shared_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_data/shared_data.c -------------------------------------------------------------------------------- /libraries/shared_data/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_data/shared_data.h -------------------------------------------------------------------------------- /libraries/shared_libdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_libdata.h -------------------------------------------------------------------------------- /libraries/shared_neighbors/shared_neighbors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_neighbors/shared_neighbors.c -------------------------------------------------------------------------------- /libraries/shared_neighbors/shared_neighbors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_neighbors/shared_neighbors.h -------------------------------------------------------------------------------- /libraries/shared_offline/shared_offline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_offline/shared_offline.c -------------------------------------------------------------------------------- /libraries/shared_offline/shared_offline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/shared_offline/shared_offline.h -------------------------------------------------------------------------------- /libraries/stack_state/stack_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/stack_state/stack_state.c -------------------------------------------------------------------------------- /libraries/stack_state/stack_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/libraries/stack_state/stack_state.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile -------------------------------------------------------------------------------- /makefile_app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile_app.mk -------------------------------------------------------------------------------- /makefile_bootloader.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile_bootloader.mk -------------------------------------------------------------------------------- /makefile_bootloader_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile_bootloader_test.mk -------------------------------------------------------------------------------- /makefile_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile_common.mk -------------------------------------------------------------------------------- /makefile_stack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/makefile_stack.mk -------------------------------------------------------------------------------- /mcu/common/cmsis/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/arm_common_tables.h -------------------------------------------------------------------------------- /mcu/common/cmsis/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/arm_const_structs.h -------------------------------------------------------------------------------- /mcu/common/cmsis/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/arm_math.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_armcc.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_armclang.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_compiler.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_gcc.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_iccarm.h -------------------------------------------------------------------------------- /mcu/common/cmsis/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/cmsis_version.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_armv8mbl.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_armv8mml.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm0.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm0plus.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm23.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm3.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm33.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm4.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm4_simd.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cm7.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_cmInstr.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_sc000.h -------------------------------------------------------------------------------- /mcu/common/cmsis/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/core_sc300.h -------------------------------------------------------------------------------- /mcu/common/cmsis/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/mpu_armv7.h -------------------------------------------------------------------------------- /mcu/common/cmsis/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/mpu_armv8.h -------------------------------------------------------------------------------- /mcu/common/cmsis/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/cmsis/tz_context.h -------------------------------------------------------------------------------- /mcu/common/entrypoint.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/entrypoint.s -------------------------------------------------------------------------------- /mcu/common/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/makefile -------------------------------------------------------------------------------- /mcu/common/radio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/radio/makefile -------------------------------------------------------------------------------- /mcu/common/radio/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/radio/radio.c -------------------------------------------------------------------------------- /mcu/common/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/common/start.c -------------------------------------------------------------------------------- /mcu/efr/common/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/mcu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p231f1024gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p231f1024gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p232f1024gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p232f1024gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p431f1024gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p431f1024gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p432f1024gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p432f1024gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p433f1024gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p433f1024gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_acmp.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_adc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_af_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_af_pins.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_af_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_af_ports.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_cmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_cryotimer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_crypto.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_csen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_csen.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_devinfo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_dmareq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_dmareq.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_emu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_etm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_etm.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_fpueh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_fpueh.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpcrc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpio_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_gpio_p.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_i2c.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_idac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_ldma.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_ldma_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_ldma_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_buf.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_lesense_st.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_letimer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_leuart.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_msc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_pcnt.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_prs_signals.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_rmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_romtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_romtable.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc_cc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_rtcc_ret.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_smu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_timer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_timer_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_timer_cc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_trng.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_usart.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_vdac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_vdac_opa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_vdac_opa.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_wdog.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/efr32fg12p_wdog_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/efr32fg12p_wdog_pch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/em_device_fg12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/em_device_fg12.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/system_efr32fg12p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/system_efr32fg12p.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg12/system_efr32fg12p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg12/system_efr32fg12p.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512gm32.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512im32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512im32.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512im48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p231f512im48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p232f512gm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p232f512gm32.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p232f512gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p232f512gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p233f512gm48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p233f512gm48.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_acmp.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_adc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_af_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_af_pins.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_af_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_af_ports.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_cmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_cryotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_cryotimer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_crypto.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_csen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_csen.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_devinfo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_dmareq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_dmareq.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_emu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_etm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_etm.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_fpueh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_fpueh.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpcrc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpio_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_gpio_p.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_i2c.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_idac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_idac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_ldma.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_ldma_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_ldma_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_buf.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_lesense_st.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_letimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_letimer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_leuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_leuart.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_msc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_pcnt.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs_ch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_prs_signals.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_rmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_rmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_romtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_romtable.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc_cc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc_ret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_rtcc_ret.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_smu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_timer.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_timer_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_timer_cc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_trng.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_usart.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_vdac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_vdac_opa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_vdac_opa.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_wdog.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/efr32fg13p_wdog_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/efr32fg13p_wdog_pch.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/em_device_fg13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/em_device_fg13.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/system_efr32fg13p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/system_efr32fg13p.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg13/system_efr32fg13p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg13/system_efr32fg13p.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_acmp.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_aes.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_agc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_agc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_bufc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_bufc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_cmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_dcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_dcdc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_dpll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_dpll.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_eca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_eca.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_emu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_frc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_frc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_hfxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_hfxo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_i2c.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_iadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_iadc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_lcd.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_ldma.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_lfxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_lfxo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_msc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_pcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_pcnt.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_prs.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_rac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_rac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_smu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_vdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_vdac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/efr32fg23_wdog.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Include/em_device.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/Source/GCC/efr32fg23.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/Source/GCC/efr32fg23.ld -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32fg23/efr32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32fg23/efr32_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_acmp.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_aes.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_agc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_agc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_bufc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_bufc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_cmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_dpll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_dpll.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_emu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_frc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_frc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_hfxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_hfxo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_i2c.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_iadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_iadc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_ldma.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_lfxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_lfxo.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_lvgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_lvgd.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_msc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_prs.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_rac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_rac.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_rtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_rtcc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_smu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_smu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/efr32mg21_wdog.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Include/em_device.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/Source/GCC/efr32mg21.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/Source/GCC/efr32mg21.ld -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg21/efr32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg21/efr32_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg22/Include/efr32mg22_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg22/Include/efr32mg22_aes.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg22/Include/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg22/Include/em_device.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/efr32mg22/efr32_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/efr32mg22/efr32_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_adc.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_adc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_assert.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_bus.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_chip.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_cmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_cmu.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_cmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_cmu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_cmu_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_cmu_compat.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_common.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_core.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_core.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_device.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_emu.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_emu.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_gpio.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_gpio.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_iadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_iadc.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_iadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_iadc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_ldma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_ldma.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_ldma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_ldma.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_prs.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_prs.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_ramfunc.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_system.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_usart.c -------------------------------------------------------------------------------- /mcu/efr/common/vendor/em_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/em_usart.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/rail_lib/common/rail_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/rail_lib/common/rail_features.h -------------------------------------------------------------------------------- /mcu/efr/common/vendor/rail_lib/common/rail_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/common/vendor/rail_lib/common/rail_types.h -------------------------------------------------------------------------------- /mcu/efr/efr32/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/config.mk -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/board_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/board_usart.h -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/button.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/ds.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/hal.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/i2c.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/led.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/makefile -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/power.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/uniqueId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/uniqueId.h -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/usart.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/usart_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/usart_dma.c -------------------------------------------------------------------------------- /mcu/efr/efr32/hal/voltage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/hal/voltage.c -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg12pxxxf1024_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg12pxxxf1024_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg12pxxxf1024_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg12pxxxf1024_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg12pxxxf512_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg12pxxxf512_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg12pxxxf512_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg12pxxxf512_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf1024_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf1024_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf1024_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf1024_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf512_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf512_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf512_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf512_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf768_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf768_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg21xxxxf768_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg21xxxxf768_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg22xxxxf512_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg22xxxxf512_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg22xxxxf512_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg22xxxxf512_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg23xxxxf512_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg23xxxxf512_app.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/ini_files/efr32xg23xxxxf512_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/ini_files/efr32xg23xxxxf512_wp.ini -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg12pxxxf1024.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg12pxxxf1024.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg12pxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg12pxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf1024.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf1024.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf768.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg21xxxxf768.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg22xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg22xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_app_efr32xg23xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_app_efr32xg23xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg12pxxxf1024.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg12pxxxf1024.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg12pxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg12pxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf1024.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf1024.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf768.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg21xxxxf768.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg22xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg22xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/efr32/linker/gcc_bl_efr32xg23xxxxf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/efr32/linker/gcc_bl_efr32xg23xxxxf512.ld -------------------------------------------------------------------------------- /mcu/efr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/efr/makefile -------------------------------------------------------------------------------- /mcu/hal_api/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/button.h -------------------------------------------------------------------------------- /mcu/hal_api/ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/ds.h -------------------------------------------------------------------------------- /mcu/hal_api/hal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/hal_api.h -------------------------------------------------------------------------------- /mcu/hal_api/hw_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/hw_delay.h -------------------------------------------------------------------------------- /mcu/hal_api/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/i2c.h -------------------------------------------------------------------------------- /mcu/hal_api/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/led.h -------------------------------------------------------------------------------- /mcu/hal_api/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/makefile -------------------------------------------------------------------------------- /mcu/hal_api/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/persistent.h -------------------------------------------------------------------------------- /mcu/hal_api/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/power.h -------------------------------------------------------------------------------- /mcu/hal_api/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/radio.h -------------------------------------------------------------------------------- /mcu/hal_api/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/spi.h -------------------------------------------------------------------------------- /mcu/hal_api/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/usart.h -------------------------------------------------------------------------------- /mcu/hal_api/voltage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/hal_api/voltage.h -------------------------------------------------------------------------------- /mcu/nrf/common/hal/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/button.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/ds.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/hal.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/hw_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/hw_delay.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/led.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/persistent.c -------------------------------------------------------------------------------- /mcu/nrf/common/hal/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/hal/spi.c -------------------------------------------------------------------------------- /mcu/nrf/common/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/mcu.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/drivers/nrfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/drivers/nrfx_common.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/drivers/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/drivers/nrfx_errors.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/get_vendor_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/get_vendor_files.py -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/get_vendor_files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python get_vendor_files.py 4 | 5 | -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_common.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_gpio.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_spim.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_timer.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/hal/nrf_uarte.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/compiler_abstraction.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52832_peripherals.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52833.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52833_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52833_bitfields.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52833_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52833_peripherals.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52840.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52840_bitfields.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52840_peripherals.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52_bitfields.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52_name_change.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52_to_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52_to_nrf52833.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf9160.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf9160_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf9160_bitfields.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf9160_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf9160_name_change.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf9160_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf9160_peripherals.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/nrf_peripherals.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/system_nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/system_nrf.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/system_nrf52.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/system_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/system_nrf52833.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/system_nrf52840.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/mdk/system_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/mdk/system_nrf9160.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/nrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/nrfx.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_config.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_config_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_config_nrf52832.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_config_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_config_nrf52833.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_config_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_config_nrf52840.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_config_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_config_nrf9160.h -------------------------------------------------------------------------------- /mcu/nrf/common/vendor/templates/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/common/vendor/templates/nrfx_glue.h -------------------------------------------------------------------------------- /mcu/nrf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/makefile -------------------------------------------------------------------------------- /mcu/nrf/nrf52/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/config.mk -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/i2c.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/makefile -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/power.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/uniqueId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/uniqueId.h -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usart.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usart_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usart_dma.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usart_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usart_usb.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/dcd_nrf5x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/dcd_nrf5x.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/makefile -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/tusb_config.h -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/usb_descriptors.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/usb_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/usb_wrapper.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/usb_uart/usb_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/usb_uart/usb_wrapper.h -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/voltage_52832.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/voltage_52832.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/hal/voltage_52833_52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/hal/voltage_52833_52840.c -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52832_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52832_app.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52832_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52832_wp.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52833_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52833_app.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52833_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52833_wp.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52840_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52840_app.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/ini_files/nrf52840_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/ini_files/nrf52840_wp.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_app_nrf52832.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_app_nrf52832.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_app_nrf52833.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_app_nrf52833.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_app_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_app_nrf52840.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_bl_nrf52832.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_bl_nrf52832.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_bl_nrf52833.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_bl_nrf52833.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf52/linker/gcc_bl_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf52/linker/gcc_bl_nrf52840.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf91/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/config.mk -------------------------------------------------------------------------------- /mcu/nrf/nrf91/hal/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/hal/i2c.c -------------------------------------------------------------------------------- /mcu/nrf/nrf91/hal/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/hal/makefile -------------------------------------------------------------------------------- /mcu/nrf/nrf91/hal/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/hal/power.c -------------------------------------------------------------------------------- /mcu/nrf/nrf91/hal/uniqueId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/hal/uniqueId.h -------------------------------------------------------------------------------- /mcu/nrf/nrf91/hal/usart_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/hal/usart_dma.c -------------------------------------------------------------------------------- /mcu/nrf/nrf91/ini_files/nrf9160_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/ini_files/nrf9160_app.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf91/ini_files/nrf9160_platform.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/ini_files/nrf9160_platform.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf91/ini_files/nrf9160_wp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/ini_files/nrf9160_wp.ini -------------------------------------------------------------------------------- /mcu/nrf/nrf91/linker/gcc_app_nrf9160.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/linker/gcc_app_nrf9160.ld -------------------------------------------------------------------------------- /mcu/nrf/nrf91/linker/gcc_bl_nrf9160.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/mcu/nrf/nrf91/linker/gcc_bl_nrf9160.ld -------------------------------------------------------------------------------- /projects/doxygen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/Dockerfile -------------------------------------------------------------------------------- /projects/doxygen/Doxyfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/Doxyfile.template -------------------------------------------------------------------------------- /projects/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /projects/doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/footer.html -------------------------------------------------------------------------------- /projects/doxygen/generate_doxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/generate_doxy.sh -------------------------------------------------------------------------------- /projects/doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/header.html -------------------------------------------------------------------------------- /projects/doxygen/media/addressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/addressing.png -------------------------------------------------------------------------------- /projects/doxygen/media/alert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/alert.jpg -------------------------------------------------------------------------------- /projects/doxygen/media/communication_directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/communication_directions.png -------------------------------------------------------------------------------- /projects/doxygen/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image1.png -------------------------------------------------------------------------------- /projects/doxygen/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image3.png -------------------------------------------------------------------------------- /projects/doxygen/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image4.png -------------------------------------------------------------------------------- /projects/doxygen/media/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image5.png -------------------------------------------------------------------------------- /projects/doxygen/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image6.png -------------------------------------------------------------------------------- /projects/doxygen/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image7.png -------------------------------------------------------------------------------- /projects/doxygen/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/image8.png -------------------------------------------------------------------------------- /projects/doxygen/media/main_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/main_components.png -------------------------------------------------------------------------------- /projects/doxygen/media/small_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/media/small_logo.png -------------------------------------------------------------------------------- /projects/doxygen/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/search.js -------------------------------------------------------------------------------- /projects/doxygen/template/doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/template/doc.tex -------------------------------------------------------------------------------- /projects/doxygen/template/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/template/preamble.tex -------------------------------------------------------------------------------- /projects/doxygen/template/wm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/template/wm-logo.png -------------------------------------------------------------------------------- /projects/doxygen/wirepas_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/projects/doxygen/wirepas_custom.css -------------------------------------------------------------------------------- /source/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/Readme.md -------------------------------------------------------------------------------- /source/example_apps/Readme.md: -------------------------------------------------------------------------------- 1 | # Example applications -------------------------------------------------------------------------------- /source/example_apps/battery_voltage_read_app/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/battery_voltage_read_app/Readme.md -------------------------------------------------------------------------------- /source/example_apps/battery_voltage_read_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/battery_voltage_read_app/app.c -------------------------------------------------------------------------------- /source/example_apps/battery_voltage_read_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/battery_voltage_read_app/config.mk -------------------------------------------------------------------------------- /source/example_apps/battery_voltage_read_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/battery_voltage_read_app/makefile -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/app.c -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/ble_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/ble_scanner.c -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/ble_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/ble_scanner.h -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/config.mk -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/config_dualmcu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/config_dualmcu.mk -------------------------------------------------------------------------------- /source/example_apps/ble_scanner/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ble_scanner/makefile -------------------------------------------------------------------------------- /source/example_apps/control_node/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_node/app.c -------------------------------------------------------------------------------- /source/example_apps/control_node/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_node/common.h -------------------------------------------------------------------------------- /source/example_apps/control_node/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_node/config.mk -------------------------------------------------------------------------------- /source/example_apps/control_node/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_node/makefile -------------------------------------------------------------------------------- /source/example_apps/control_node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_node/readme.md -------------------------------------------------------------------------------- /source/example_apps/control_router/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_router/app.c -------------------------------------------------------------------------------- /source/example_apps/control_router/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_router/config.mk -------------------------------------------------------------------------------- /source/example_apps/control_router/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_router/makefile -------------------------------------------------------------------------------- /source/example_apps/control_router/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/control_router/readme.md -------------------------------------------------------------------------------- /source/example_apps/custom_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/custom_app/app.c -------------------------------------------------------------------------------- /source/example_apps/custom_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/custom_app/config.mk -------------------------------------------------------------------------------- /source/example_apps/custom_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/custom_app/makefile -------------------------------------------------------------------------------- /source/example_apps/evaluation_app/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/evaluation_app/Readme.md -------------------------------------------------------------------------------- /source/example_apps/evaluation_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/evaluation_app/app.c -------------------------------------------------------------------------------- /source/example_apps/evaluation_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/evaluation_app/config.mk -------------------------------------------------------------------------------- /source/example_apps/evaluation_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/evaluation_app/makefile -------------------------------------------------------------------------------- /source/example_apps/low_latency_app/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/low_latency_app/Readme.md -------------------------------------------------------------------------------- /source/example_apps/low_latency_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/low_latency_app/app.c -------------------------------------------------------------------------------- /source/example_apps/low_latency_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/low_latency_app/config.mk -------------------------------------------------------------------------------- /source/example_apps/low_latency_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/low_latency_app/makefile -------------------------------------------------------------------------------- /source/example_apps/minimal_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/minimal_app/app.c -------------------------------------------------------------------------------- /source/example_apps/minimal_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/minimal_app/config.mk -------------------------------------------------------------------------------- /source/example_apps/minimal_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/minimal_app/makefile -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/app.c -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/app_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/app_config.c -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/bme280_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/bme280_wrapper.c -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/config.mk -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/docs/Dockerfile -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/docs/Doxyfile -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/docs/generate_doxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/docs/generate_doxy.sh -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/docs/ruuvi_evk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/docs/ruuvi_evk.pdf -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/docs/template/doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/docs/template/doc.tex -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/format_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/format_data.c -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/helpers/README.md -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/helpers/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/helpers/README.pdf -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/helpers/appconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/helpers/appconfig.yaml -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/helpers/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML>=3.13 2 | -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/include/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/include/app_config.h -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/include/bme280_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/include/bme280_wrapper.h -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/include/format_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/include/format_data.h -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/include/main_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/include/main_page.h -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/lis2dh12_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/lis2dh12_wrapper.c -------------------------------------------------------------------------------- /source/example_apps/ruuvi_evk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/example_apps/ruuvi_evk/makefile -------------------------------------------------------------------------------- /source/reference_apps/Readme.md: -------------------------------------------------------------------------------- 1 | # Reference applications -------------------------------------------------------------------------------- /source/reference_apps/dualmcu_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/dualmcu_app/app.c -------------------------------------------------------------------------------- /source/reference_apps/dualmcu_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/dualmcu_app/config.mk -------------------------------------------------------------------------------- /source/reference_apps/dualmcu_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/dualmcu_app/makefile -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/app.c -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/config.mk -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/gpio.h -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/gpio_efr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/gpio_efr32.c -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/gpio_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/gpio_nrf52.c -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/makefile -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/motion/motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/motion/motion.c -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/motion/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/reference_apps/positioning_app/motion/motion.h -------------------------------------------------------------------------------- /source/reference_apps/positioning_app/persistent_config/requirements.txt: -------------------------------------------------------------------------------- 1 | pyYAML 2 | -------------------------------------------------------------------------------- /source/unitary_apps/Readme.md: -------------------------------------------------------------------------------- 1 | # Unitary applications -------------------------------------------------------------------------------- /source/unitary_apps/aes/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/aes/app.c -------------------------------------------------------------------------------- /source/unitary_apps/aes/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/aes/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/aes/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/aes/makefile -------------------------------------------------------------------------------- /source/unitary_apps/app_persistent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/app_persistent/README.md -------------------------------------------------------------------------------- /source/unitary_apps/app_persistent/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/app_persistent/app.c -------------------------------------------------------------------------------- /source/unitary_apps/app_persistent/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/app_persistent/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/app_persistent/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/app_persistent/makefile -------------------------------------------------------------------------------- /source/unitary_apps/appconfig/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/appconfig/app.c -------------------------------------------------------------------------------- /source/unitary_apps/appconfig/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/appconfig/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/appconfig/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/appconfig/makefile -------------------------------------------------------------------------------- /source/unitary_apps/basic_interrupt/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/basic_interrupt/app.c -------------------------------------------------------------------------------- /source/unitary_apps/basic_interrupt/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/basic_interrupt/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/basic_interrupt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/basic_interrupt/makefile -------------------------------------------------------------------------------- /source/unitary_apps/ble_tx/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/ble_tx/app.c -------------------------------------------------------------------------------- /source/unitary_apps/ble_tx/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/ble_tx/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/ble_tx/makefile: -------------------------------------------------------------------------------- 1 | # Use Shared Data 2 | SHARED_DATA=yes 3 | -------------------------------------------------------------------------------- /source/unitary_apps/blink/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/blink/app.c -------------------------------------------------------------------------------- /source/unitary_apps/blink/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/blink/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/blink/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/blink/makefile -------------------------------------------------------------------------------- /source/unitary_apps/diradv/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/diradv/app.c -------------------------------------------------------------------------------- /source/unitary_apps/diradv/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/diradv/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/diradv/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/diradv/makefile -------------------------------------------------------------------------------- /source/unitary_apps/local_provisioning/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/local_provisioning/app.c -------------------------------------------------------------------------------- /source/unitary_apps/local_provisioning/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/local_provisioning/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/local_provisioning/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/local_provisioning/makefile -------------------------------------------------------------------------------- /source/unitary_apps/nfc/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/app.c -------------------------------------------------------------------------------- /source/unitary_apps/nfc/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/nfc/drivers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/drivers/makefile -------------------------------------------------------------------------------- /source/unitary_apps/nfc/drivers/nrf52/nfc_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/drivers/nrf52/nfc_hw.c -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/ndef.c -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/ndef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/ndef.h -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/nfc_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/nfc_hw.h -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/t2_emulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/t2_emulation.c -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/t2_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/t2_emulation.h -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/tlv.c -------------------------------------------------------------------------------- /source/unitary_apps/nfc/lib/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/lib/tlv.h -------------------------------------------------------------------------------- /source/unitary_apps/nfc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/nfc/makefile -------------------------------------------------------------------------------- /source/unitary_apps/provisioning_joining_node/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/provisioning_joining_node/app.c -------------------------------------------------------------------------------- /source/unitary_apps/provisioning_joining_node/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/provisioning_joining_node/makefile -------------------------------------------------------------------------------- /source/unitary_apps/provisioning_proxy/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/provisioning_proxy/app.c -------------------------------------------------------------------------------- /source/unitary_apps/provisioning_proxy/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/provisioning_proxy/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/provisioning_proxy/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/provisioning_proxy/makefile -------------------------------------------------------------------------------- /source/unitary_apps/scheduler/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/scheduler/app.c -------------------------------------------------------------------------------- /source/unitary_apps/scheduler/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/scheduler/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/scheduler/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/scheduler/makefile -------------------------------------------------------------------------------- /source/unitary_apps/shared_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/shared_data/README.md -------------------------------------------------------------------------------- /source/unitary_apps/shared_data/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/shared_data/app.c -------------------------------------------------------------------------------- /source/unitary_apps/shared_data/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/shared_data/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/shared_data/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/shared_data/makefile -------------------------------------------------------------------------------- /source/unitary_apps/tinycbor/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/tinycbor/app.c -------------------------------------------------------------------------------- /source/unitary_apps/tinycbor/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/tinycbor/config.mk -------------------------------------------------------------------------------- /source/unitary_apps/tinycbor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/source/unitary_apps/tinycbor/makefile -------------------------------------------------------------------------------- /tools/bootloader_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/bootloader_config.py -------------------------------------------------------------------------------- /tools/check_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/check_python.py -------------------------------------------------------------------------------- /tools/dependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/dependency.json -------------------------------------------------------------------------------- /tools/firmware_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/firmware_selector.py -------------------------------------------------------------------------------- /tools/genhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/genhex.py -------------------------------------------------------------------------------- /tools/genscratchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/genscratchpad.py -------------------------------------------------------------------------------- /tools/hextoarray32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/hextoarray32.py -------------------------------------------------------------------------------- /tools/hextool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/hextool.py -------------------------------------------------------------------------------- /tools/scratchpadinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/scratchpadinfo.py -------------------------------------------------------------------------------- /tools/sdk_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/sdk_builder.py -------------------------------------------------------------------------------- /tools/sdk_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/sdk_explorer.py -------------------------------------------------------------------------------- /tools/sdk_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/tools/sdk_wizard.py -------------------------------------------------------------------------------- /util/aessw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/aessw.c -------------------------------------------------------------------------------- /util/aessw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/aessw.h -------------------------------------------------------------------------------- /util/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/api.c -------------------------------------------------------------------------------- /util/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/api.h -------------------------------------------------------------------------------- /util/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/bitfield.h -------------------------------------------------------------------------------- /util/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/crc.c -------------------------------------------------------------------------------- /util/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/crc.h -------------------------------------------------------------------------------- /util/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/debug_log.h -------------------------------------------------------------------------------- /util/doublebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/doublebuffer.h -------------------------------------------------------------------------------- /util/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/makefile -------------------------------------------------------------------------------- /util/node_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/node_configuration.h -------------------------------------------------------------------------------- /util/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/pack.c -------------------------------------------------------------------------------- /util/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/pack.h -------------------------------------------------------------------------------- /util/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/random.c -------------------------------------------------------------------------------- /util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/random.h -------------------------------------------------------------------------------- /util/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/ringbuffer.h -------------------------------------------------------------------------------- /util/sl_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/sl_list.c -------------------------------------------------------------------------------- /util/sl_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/sl_list.h -------------------------------------------------------------------------------- /util/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/syscalls.c -------------------------------------------------------------------------------- /util/tinyaes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/.gitignore -------------------------------------------------------------------------------- /util/tinyaes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/CMakeLists.txt -------------------------------------------------------------------------------- /util/tinyaes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/Makefile -------------------------------------------------------------------------------- /util/tinyaes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/README.md -------------------------------------------------------------------------------- /util/tinyaes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/aes.c -------------------------------------------------------------------------------- /util/tinyaes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/aes.h -------------------------------------------------------------------------------- /util/tinyaes/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/aes.hpp -------------------------------------------------------------------------------- /util/tinyaes/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/conanfile.py -------------------------------------------------------------------------------- /util/tinyaes/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/library.json -------------------------------------------------------------------------------- /util/tinyaes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/test.c -------------------------------------------------------------------------------- /util/tinyaes/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/test.cpp -------------------------------------------------------------------------------- /util/tinyaes/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /util/tinyaes/test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/test_package/conanfile.py -------------------------------------------------------------------------------- /util/tinyaes/unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinyaes/unlicense.txt -------------------------------------------------------------------------------- /util/tinycbor/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/.appveyor.yml -------------------------------------------------------------------------------- /util/tinycbor/.tag: -------------------------------------------------------------------------------- 1 | 7305a2625220f6e8f42b6fba84b7d2c3e4db9d17 2 | -------------------------------------------------------------------------------- /util/tinycbor/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/.travis.yml -------------------------------------------------------------------------------- /util/tinycbor/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/Doxyfile -------------------------------------------------------------------------------- /util/tinycbor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/LICENSE -------------------------------------------------------------------------------- /util/tinycbor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/Makefile -------------------------------------------------------------------------------- /util/tinycbor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/README -------------------------------------------------------------------------------- /util/tinycbor/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/TODO -------------------------------------------------------------------------------- /util/tinycbor/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.3 2 | -------------------------------------------------------------------------------- /util/tinycbor/examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = simplereader.pro 3 | -------------------------------------------------------------------------------- /util/tinycbor/examples/simplereader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/examples/simplereader.c -------------------------------------------------------------------------------- /util/tinycbor/examples/simplereader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/examples/simplereader.pro -------------------------------------------------------------------------------- /util/tinycbor/scripts/maketag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/scripts/maketag.pl -------------------------------------------------------------------------------- /util/tinycbor/scripts/update-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/scripts/update-docs.sh -------------------------------------------------------------------------------- /util/tinycbor/src/cbor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cbor.dox -------------------------------------------------------------------------------- /util/tinycbor/src/cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cbor.h -------------------------------------------------------------------------------- /util/tinycbor/src/cborencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborencoder.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborerrorstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborerrorstrings.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborinternal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborinternal_p.h -------------------------------------------------------------------------------- /util/tinycbor/src/cborjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborjson.h -------------------------------------------------------------------------------- /util/tinycbor/src/cborparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborparser.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborparser_dup_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborparser_dup_string.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborpretty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborpretty.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborpretty_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborpretty_stdio.c -------------------------------------------------------------------------------- /util/tinycbor/src/cbortojson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cbortojson.c -------------------------------------------------------------------------------- /util/tinycbor/src/cborvalidation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/cborvalidation.c -------------------------------------------------------------------------------- /util/tinycbor/src/compilersupport_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/compilersupport_p.h -------------------------------------------------------------------------------- /util/tinycbor/src/open_memstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/open_memstream.c -------------------------------------------------------------------------------- /util/tinycbor/src/parsetags.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/parsetags.pl -------------------------------------------------------------------------------- /util/tinycbor/src/src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/src.pri -------------------------------------------------------------------------------- /util/tinycbor/src/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/tags.txt -------------------------------------------------------------------------------- /util/tinycbor/src/tinycbor-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/tinycbor-version.h -------------------------------------------------------------------------------- /util/tinycbor/src/tinycbor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/tinycbor.pro -------------------------------------------------------------------------------- /util/tinycbor/src/utf8_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/src/utf8_p.h -------------------------------------------------------------------------------- /util/tinycbor/tests/c90/c90.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/c90/c90.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/c90/tst_c90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/c90/tst_c90.c -------------------------------------------------------------------------------- /util/tinycbor/tests/cpp/cpp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/cpp/cpp.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/cpp/tst_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/cpp/tst_cpp.cpp -------------------------------------------------------------------------------- /util/tinycbor/tests/encoder/encoder.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/encoder/encoder.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/encoder/tst_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/encoder/tst_encoder.cpp -------------------------------------------------------------------------------- /util/tinycbor/tests/parser/parser.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/parser/parser.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/parser/tst_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/parser/tst_parser.cpp -------------------------------------------------------------------------------- /util/tinycbor/tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/tests.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/tojson/tojson.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/tojson/tojson.pro -------------------------------------------------------------------------------- /util/tinycbor/tests/tojson/tst_tojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tests/tojson/tst_tojson.cpp -------------------------------------------------------------------------------- /util/tinycbor/tinycbor.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tinycbor.pc.in -------------------------------------------------------------------------------- /util/tinycbor/tools/cbordump/cbordump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tools/cbordump/cbordump.c -------------------------------------------------------------------------------- /util/tinycbor/tools/cbordump/cbordump.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tools/cbordump/cbordump.pro -------------------------------------------------------------------------------- /util/tinycbor/tools/json2cbor/json2cbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tools/json2cbor/json2cbor.c -------------------------------------------------------------------------------- /util/tinycbor/tools/json2cbor/json2cbor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tinycbor/tools/json2cbor/json2cbor.pro -------------------------------------------------------------------------------- /util/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tlv.c -------------------------------------------------------------------------------- /util/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/tlv.h -------------------------------------------------------------------------------- /util/uart_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/uart_print.c -------------------------------------------------------------------------------- /util/uart_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/uart_print.h -------------------------------------------------------------------------------- /util/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/util.c -------------------------------------------------------------------------------- /util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/util/util.h -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepas/wm-sdk/HEAD/version.txt --------------------------------------------------------------------------------