├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── github.yml ├── LICENSE ├── README.md ├── series0 ├── acmp │ ├── acmp_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_acmp_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_acmp_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_acmp_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_acmp_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_acmp_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_acmp_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_acmp_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_acmp_interrupt.xml │ │ │ ├── EFM32G_acmp_interrupt.xml │ │ │ ├── EFM32HG_acmp_interrupt.xml │ │ │ ├── EFM32LG_acmp_interrupt.xml │ │ │ ├── EFM32TG_acmp_interrupt.xml │ │ │ ├── EFM32WG_acmp_interrupt.xml │ │ │ └── EFM32ZG_acmp_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_acmp_interrupt.ewd │ │ │ ├── EFM32GG_acmp_interrupt.ewp │ │ │ ├── EFM32G_acmp_interrupt.ewd │ │ │ ├── EFM32G_acmp_interrupt.ewp │ │ │ ├── EFM32HG_acmp_interrupt.ewd │ │ │ ├── EFM32HG_acmp_interrupt.ewp │ │ │ ├── EFM32LG_acmp_interrupt.ewd │ │ │ ├── EFM32LG_acmp_interrupt.ewp │ │ │ ├── EFM32TG_acmp_interrupt.ewd │ │ │ ├── EFM32TG_acmp_interrupt.ewp │ │ │ ├── EFM32WG_acmp_interrupt.ewd │ │ │ ├── EFM32WG_acmp_interrupt.ewp │ │ │ ├── EFM32ZG_acmp_interrupt.ewd │ │ │ ├── EFM32ZG_acmp_interrupt.ewp │ │ │ └── acmp_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0.c │ │ │ └── main_s0_pc4.c │ ├── acmp_pin_output │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_acmp_pin_output.slsproj │ │ │ ├── STK3200_EFM32ZG_acmp_pin_output.slsproj │ │ │ ├── STK3300_EFM32TG_acmp_pin_output.slsproj │ │ │ ├── STK3600_EFM32LG_acmp_pin_output.slsproj │ │ │ ├── STK3700_EFM32GG_acmp_pin_output.slsproj │ │ │ ├── STK3800_EFM32WG_acmp_pin_output.slsproj │ │ │ └── STKXXX_EFM32G_acmp_pin_output.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_acmp_pin_output.xml │ │ │ ├── EFM32G_acmp_pin_output.xml │ │ │ ├── EFM32HG_acmp_pin_output.xml │ │ │ ├── EFM32LG_acmp_pin_output.xml │ │ │ ├── EFM32TG_acmp_pin_output.xml │ │ │ ├── EFM32WG_acmp_pin_output.xml │ │ │ └── EFM32ZG_acmp_pin_output.xml │ │ ├── iar │ │ │ ├── EFM32GG_acmp_pin_output.ewd │ │ │ ├── EFM32GG_acmp_pin_output.ewp │ │ │ ├── EFM32G_acmp_pin_output.ewd │ │ │ ├── EFM32G_acmp_pin_output.ewp │ │ │ ├── EFM32HG_acmp_pin_output.ewd │ │ │ ├── EFM32HG_acmp_pin_output.ewp │ │ │ ├── EFM32LG_acmp_pin_output.ewd │ │ │ ├── EFM32LG_acmp_pin_output.ewp │ │ │ ├── EFM32TG_acmp_pin_output.ewd │ │ │ ├── EFM32TG_acmp_pin_output.ewp │ │ │ ├── EFM32WG_acmp_pin_output.ewd │ │ │ ├── EFM32WG_acmp_pin_output.ewp │ │ │ ├── EFM32ZG_acmp_pin_output.ewd │ │ │ ├── EFM32ZG_acmp_pin_output.ewp │ │ │ └── acmp_pin_output.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gecko.c │ │ │ ├── main_s0.c │ │ │ ├── main_tg.c │ │ │ └── main_zg_hg.c │ └── acmp_polled │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_acmp_polled.slsproj │ │ ├── STK3200_EFM32ZG_acmp_polled.slsproj │ │ ├── STK3300_EFM32TG_acmp_polled.slsproj │ │ ├── STK3600_EFM32LG_acmp_polled.slsproj │ │ ├── STK3700_EFM32GG_acmp_polled.slsproj │ │ ├── STK3800_EFM32WG_acmp_polled.slsproj │ │ └── STKXXX_EFM32G_acmp_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG_acmp_polled.xml │ │ ├── EFM32G_acmp_polled.xml │ │ ├── EFM32HG_acmp_polled.xml │ │ ├── EFM32LG_acmp_polled.xml │ │ ├── EFM32TG_acmp_polled.xml │ │ ├── EFM32WG_acmp_polled.xml │ │ └── EFM32ZG_acmp_polled.xml │ │ ├── iar │ │ ├── EFM32GG_acmp_polled.ewd │ │ ├── EFM32GG_acmp_polled.ewp │ │ ├── EFM32G_acmp_polled.ewd │ │ ├── EFM32G_acmp_polled.ewp │ │ ├── EFM32HG_acmp_polled.ewd │ │ ├── EFM32HG_acmp_polled.ewp │ │ ├── EFM32LG_acmp_polled.ewd │ │ ├── EFM32LG_acmp_polled.ewp │ │ ├── EFM32TG_acmp_polled.ewd │ │ ├── EFM32TG_acmp_polled.ewp │ │ ├── EFM32WG_acmp_polled.ewd │ │ ├── EFM32WG_acmp_polled.ewp │ │ ├── EFM32ZG_acmp_polled.ewd │ │ ├── EFM32ZG_acmp_polled.ewp │ │ └── acmp_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_s0.c │ │ └── main_s0_pc4.c ├── adc │ ├── adc_scan_letimer_prs_dma │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── STK3700_EFM32GG_adc_scan_letimer_prs_dma.slsproj │ │ │ └── STK3800_EFM32WG_adc_scan_letimer_prs_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFM32LG_adc_scan_letimer_prs_dma.xml │ │ │ └── EFM32WG_adc_scan_letimer_prs_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32GG_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFM32LG_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32LG_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFM32WG_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32WG_adc_scan_letimer_prs_dma.ewp │ │ │ └── adc_scan_letimer_prs_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── adc_scan_prs_gpio_dma │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── STK3300_EFM32TG_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── STK3600_EFM32LG_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── STK3700_EFM32GG_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── STK3800_EFM32WG_adc_scan_prs_gpio_dma.slsproj │ │ │ └── STKXXX_EFM32G_adc_scan_prs_gpio_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32G_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32HG_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32LG_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32TG_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32WG_adc_scan_prs_gpio_dma.xml │ │ │ └── EFM32ZG_adc_scan_prs_gpio_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32GG_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32G_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32G_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32HG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32HG_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32LG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32LG_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32TG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32TG_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32WG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32WG_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32ZG_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32ZG_adc_scan_prs_gpio_dma.ewp │ │ │ └── adc_scan_prs_gpio_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0.c │ │ │ └── main_s0_loopless.c │ ├── adc_single_diff_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_adc_single_diff_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_adc_single_diff_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_adc_single_diff_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_adc_single_diff_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_adc_single_diff_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_adc_single_diff_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_adc_single_diff_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_single_diff_interrupt.xml │ │ │ ├── EFM32G_adc_single_diff_interrupt.xml │ │ │ ├── EFM32HG_adc_single_diff_interrupt.xml │ │ │ ├── EFM32LG_adc_single_diff_interrupt.xml │ │ │ ├── EFM32TG_adc_single_diff_interrupt.xml │ │ │ ├── EFM32WG_adc_single_diff_interrupt.xml │ │ │ └── EFM32ZG_adc_single_diff_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32GG_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32G_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32G_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32HG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32HG_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32LG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32LG_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32TG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32TG_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32WG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32WG_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32ZG_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32ZG_adc_single_diff_interrupt.ewp │ │ │ └── adc_single_diff_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── adc_single_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_adc_single_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_adc_single_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_adc_single_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_adc_single_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_adc_single_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_adc_single_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_adc_single_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_single_interrupt.xml │ │ │ ├── EFM32G_adc_single_interrupt.xml │ │ │ ├── EFM32HG_adc_single_interrupt.xml │ │ │ ├── EFM32LG_adc_single_interrupt.xml │ │ │ ├── EFM32TG_adc_single_interrupt.xml │ │ │ ├── EFM32WG_adc_single_interrupt.xml │ │ │ └── EFM32ZG_adc_single_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_single_interrupt.ewd │ │ │ ├── EFM32GG_adc_single_interrupt.ewp │ │ │ ├── EFM32G_adc_single_interrupt.ewd │ │ │ ├── EFM32G_adc_single_interrupt.ewp │ │ │ ├── EFM32HG_adc_single_interrupt.ewd │ │ │ ├── EFM32HG_adc_single_interrupt.ewp │ │ │ ├── EFM32LG_adc_single_interrupt.ewd │ │ │ ├── EFM32LG_adc_single_interrupt.ewp │ │ │ ├── EFM32TG_adc_single_interrupt.ewd │ │ │ ├── EFM32TG_adc_single_interrupt.ewp │ │ │ ├── EFM32WG_adc_single_interrupt.ewd │ │ │ ├── EFM32WG_adc_single_interrupt.ewp │ │ │ ├── EFM32ZG_adc_single_interrupt.ewd │ │ │ ├── EFM32ZG_adc_single_interrupt.ewp │ │ │ └── adc_single_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── adc_single_letimer_interrupt │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_adc_single_letimer_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_adc_single_letimer_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_adc_single_letimer_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_adc_single_letimer_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_adc_single_letimer_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32G_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32LG_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32TG_adc_single_letimer_interrupt.xml │ │ │ └── EFM32WG_adc_single_letimer_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32GG_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32G_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32G_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32LG_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32LG_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32TG_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32TG_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32WG_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32WG_adc_single_letimer_interrupt.ewp │ │ │ └── adc_single_letimer_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── adc_single_letimer_prs_dma │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_adc_single_letimer_prs_dma.slsproj │ │ │ ├── STK3700_EFM32GG_adc_single_letimer_prs_dma.slsproj │ │ │ └── STK3800_EFM32WG_adc_single_letimer_prs_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_single_letimer_prs_dma.xml │ │ │ ├── EFM32LG_adc_single_letimer_prs_dma.xml │ │ │ └── EFM32WG_adc_single_letimer_prs_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32GG_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFM32LG_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32LG_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFM32WG_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32WG_adc_single_letimer_prs_dma.ewp │ │ │ └── adc_single_letimer_prs_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── adc_single_polled │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_adc_single_polled.slsproj │ │ │ ├── STK3200_EFM32ZG_adc_single_polled.slsproj │ │ │ ├── STK3300_EFM32TG_adc_single_polled.slsproj │ │ │ ├── STK3600_EFM32LG_adc_single_polled.slsproj │ │ │ ├── STK3700_EFM32GG_adc_single_polled.slsproj │ │ │ ├── STK3800_EFM32WG_adc_single_polled.slsproj │ │ │ └── STKXXX_EFM32G_adc_single_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_adc_single_polled.xml │ │ │ ├── EFM32G_adc_single_polled.xml │ │ │ ├── EFM32HG_adc_single_polled.xml │ │ │ ├── EFM32LG_adc_single_polled.xml │ │ │ ├── EFM32TG_adc_single_polled.xml │ │ │ ├── EFM32WG_adc_single_polled.xml │ │ │ └── EFM32ZG_adc_single_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG_adc_single_polled.ewd │ │ │ ├── EFM32GG_adc_single_polled.ewp │ │ │ ├── EFM32G_adc_single_polled.ewd │ │ │ ├── EFM32G_adc_single_polled.ewp │ │ │ ├── EFM32HG_adc_single_polled.ewd │ │ │ ├── EFM32HG_adc_single_polled.ewp │ │ │ ├── EFM32LG_adc_single_polled.ewd │ │ │ ├── EFM32LG_adc_single_polled.ewp │ │ │ ├── EFM32TG_adc_single_polled.ewd │ │ │ ├── EFM32TG_adc_single_polled.ewp │ │ │ ├── EFM32WG_adc_single_polled.ewd │ │ │ ├── EFM32WG_adc_single_polled.ewp │ │ │ ├── EFM32ZG_adc_single_polled.ewd │ │ │ ├── EFM32ZG_adc_single_polled.ewp │ │ │ └── adc_single_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── adc_single_prs_gpio_dma │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_adc_single_prs_gpio_dma.slsproj │ │ ├── STK3200_EFM32ZG_adc_single_prs_gpio_dma.slsproj │ │ ├── STK3300_EFM32TG_adc_single_prs_gpio_dma.slsproj │ │ ├── STK3600_EFM32LG_adc_single_prs_gpio_dma.slsproj │ │ ├── STK3700_EFM32GG_adc_single_prs_gpio_dma.slsproj │ │ ├── STK3800_EFM32WG_adc_single_prs_gpio_dma.slsproj │ │ └── STKXXX_EFM32G_adc_single_prs_gpio_dma.slsproj │ │ ├── doc │ │ ├── EFM32GG_adc_single_prs_gpio_dma.xml │ │ ├── EFM32G_adc_single_prs_gpio_dma.xml │ │ ├── EFM32HG_adc_single_prs_gpio_dma.xml │ │ ├── EFM32LG_adc_single_prs_gpio_dma.xml │ │ ├── EFM32TG_adc_single_prs_gpio_dma.xml │ │ ├── EFM32WG_adc_single_prs_gpio_dma.xml │ │ └── EFM32ZG_adc_single_prs_gpio_dma.xml │ │ ├── iar │ │ ├── EFM32GG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32GG_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32G_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32G_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32HG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32HG_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32LG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32LG_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32TG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32TG_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32WG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32WG_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32ZG_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32ZG_adc_single_prs_gpio_dma.ewp │ │ └── adc_single_prs_gpio_dma.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_s0.c │ │ └── main_s0_loopless.c ├── aes │ ├── aes_cbc_128 │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_aes_cbc_128.slsproj │ │ │ ├── STK3200_EFM32ZG_aes_cbc_128.slsproj │ │ │ ├── STK3300_EFM32TG_aes_cbc_128.slsproj │ │ │ ├── STK3600_EFM32LG_aes_cbc_128.slsproj │ │ │ ├── STK3700_EFM32GG_aes_cbc_128.slsproj │ │ │ ├── STK3800_EFM32WG_aes_cbc_128.slsproj │ │ │ └── STKXXX_EFM32G_aes_cbc_128.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_cbc_128.xml │ │ │ ├── EFM32G_aes_cbc_128.xml │ │ │ ├── EFM32HG_aes_cbc_128.xml │ │ │ ├── EFM32LG_aes_cbc_128.xml │ │ │ ├── EFM32TG_aes_cbc_128.xml │ │ │ ├── EFM32WG_aes_cbc_128.xml │ │ │ └── EFM32ZG_aes_cbc_128.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_cbc_128.ewd │ │ │ ├── EFM32GG_aes_cbc_128.ewp │ │ │ ├── EFM32G_aes_cbc_128.ewd │ │ │ ├── EFM32G_aes_cbc_128.ewp │ │ │ ├── EFM32HG_aes_cbc_128.ewd │ │ │ ├── EFM32HG_aes_cbc_128.ewp │ │ │ ├── EFM32LG_aes_cbc_128.ewd │ │ │ ├── EFM32LG_aes_cbc_128.ewp │ │ │ ├── EFM32TG_aes_cbc_128.ewd │ │ │ ├── EFM32TG_aes_cbc_128.ewp │ │ │ ├── EFM32WG_aes_cbc_128.ewd │ │ │ ├── EFM32WG_aes_cbc_128.ewp │ │ │ ├── EFM32ZG_aes_cbc_128.ewd │ │ │ ├── EFM32ZG_aes_cbc_128.ewp │ │ │ └── aes_cbc_128.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_cbc_256 │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_aes_cbc_256.slsproj │ │ │ ├── STK3600_EFM32LG_aes_cbc_256.slsproj │ │ │ ├── STK3700_EFM32GG_aes_cbc_256.slsproj │ │ │ ├── STK3800_EFM32WG_aes_cbc_256.slsproj │ │ │ └── STKXXX_EFM32G_aes_cbc_256.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_cbc_256.xml │ │ │ ├── EFM32G_aes_cbc_256.xml │ │ │ ├── EFM32LG_aes_cbc_256.xml │ │ │ ├── EFM32TG_aes_cbc_256.xml │ │ │ └── EFM32WG_aes_cbc_256.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_cbc_256.ewd │ │ │ ├── EFM32GG_aes_cbc_256.ewp │ │ │ ├── EFM32G_aes_cbc_256.ewd │ │ │ ├── EFM32G_aes_cbc_256.ewp │ │ │ ├── EFM32LG_aes_cbc_256.ewd │ │ │ ├── EFM32LG_aes_cbc_256.ewp │ │ │ ├── EFM32TG_aes_cbc_256.ewd │ │ │ ├── EFM32TG_aes_cbc_256.ewp │ │ │ ├── EFM32WG_aes_cbc_256.ewd │ │ │ ├── EFM32WG_aes_cbc_256.ewp │ │ │ └── aes_cbc_256.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_cfb_128 │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_aes_cfb_128.slsproj │ │ │ ├── STK3200_EFM32ZG_aes_cfb_128.slsproj │ │ │ ├── STK3300_EFM32TG_aes_cfb_128.slsproj │ │ │ ├── STK3600_EFM32LG_aes_cfb_128.slsproj │ │ │ ├── STK3700_EFM32GG_aes_cfb_128.slsproj │ │ │ ├── STK3800_EFM32WG_aes_cfb_128.slsproj │ │ │ └── STKXXX_EFM32G_aes_cfb_128.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_cfb_128.xml │ │ │ ├── EFM32G_aes_cfb_128.xml │ │ │ ├── EFM32HG_aes_cfb_128.xml │ │ │ ├── EFM32LG_aes_cfb_128.xml │ │ │ ├── EFM32TG_aes_cfb_128.xml │ │ │ ├── EFM32WG_aes_cfb_128.xml │ │ │ └── EFM32ZG_aes_cfb_128.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_cfb_128.ewd │ │ │ ├── EFM32GG_aes_cfb_128.ewp │ │ │ ├── EFM32G_aes_cfb_128.ewd │ │ │ ├── EFM32G_aes_cfb_128.ewp │ │ │ ├── EFM32HG_aes_cfb_128.ewd │ │ │ ├── EFM32HG_aes_cfb_128.ewp │ │ │ ├── EFM32LG_aes_cfb_128.ewd │ │ │ ├── EFM32LG_aes_cfb_128.ewp │ │ │ ├── EFM32TG_aes_cfb_128.ewd │ │ │ ├── EFM32TG_aes_cfb_128.ewp │ │ │ ├── EFM32WG_aes_cfb_128.ewd │ │ │ ├── EFM32WG_aes_cfb_128.ewp │ │ │ ├── EFM32ZG_aes_cfb_128.ewd │ │ │ ├── EFM32ZG_aes_cfb_128.ewp │ │ │ └── aes_cfb_128.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_cfb_256 │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_aes_cfb_256.slsproj │ │ │ ├── STK3600_EFM32LG_aes_cfb_256.slsproj │ │ │ ├── STK3700_EFM32GG_aes_cfb_256.slsproj │ │ │ ├── STK3800_EFM32WG_aes_cfb_256.slsproj │ │ │ └── STKXXX_EFM32G_aes_cfb_256.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_cfb_256.xml │ │ │ ├── EFM32G_aes_cfb_256.xml │ │ │ ├── EFM32LG_aes_cfb_256.xml │ │ │ ├── EFM32TG_aes_cfb_256.xml │ │ │ └── EFM32WG_aes_cfb_256.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_cfb_256.ewd │ │ │ ├── EFM32GG_aes_cfb_256.ewp │ │ │ ├── EFM32G_aes_cfb_256.ewd │ │ │ ├── EFM32G_aes_cfb_256.ewp │ │ │ ├── EFM32LG_aes_cfb_256.ewd │ │ │ ├── EFM32LG_aes_cfb_256.ewp │ │ │ ├── EFM32TG_aes_cfb_256.ewd │ │ │ ├── EFM32TG_aes_cfb_256.ewp │ │ │ ├── EFM32WG_aes_cfb_256.ewd │ │ │ ├── EFM32WG_aes_cfb_256.ewp │ │ │ └── aes_cfb_256.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_ctr_128 │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_aes_ctr_128.slsproj │ │ │ ├── STK3200_EFM32ZG_aes_ctr_128.slsproj │ │ │ ├── STK3300_EFM32TG_aes_ctr_128.slsproj │ │ │ ├── STK3600_EFM32LG_aes_ctr_128.slsproj │ │ │ ├── STK3700_EFM32GG_aes_ctr_128.slsproj │ │ │ ├── STK3800_EFM32WG_aes_ctr_128.slsproj │ │ │ └── STKXXX_EFM32G_aes_ctr_128.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_ctr_128.xml │ │ │ ├── EFM32G_aes_ctr_128.xml │ │ │ ├── EFM32HG_aes_ctr_128.xml │ │ │ ├── EFM32LG_aes_ctr_128.xml │ │ │ ├── EFM32TG_aes_ctr_128.xml │ │ │ ├── EFM32WG_aes_ctr_128.xml │ │ │ └── EFM32ZG_aes_ctr_128.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_ctr_128.ewd │ │ │ ├── EFM32GG_aes_ctr_128.ewp │ │ │ ├── EFM32G_aes_ctr_128.ewd │ │ │ ├── EFM32G_aes_ctr_128.ewp │ │ │ ├── EFM32HG_aes_ctr_128.ewd │ │ │ ├── EFM32HG_aes_ctr_128.ewp │ │ │ ├── EFM32LG_aes_ctr_128.ewd │ │ │ ├── EFM32LG_aes_ctr_128.ewp │ │ │ ├── EFM32TG_aes_ctr_128.ewd │ │ │ ├── EFM32TG_aes_ctr_128.ewp │ │ │ ├── EFM32WG_aes_ctr_128.ewd │ │ │ ├── EFM32WG_aes_ctr_128.ewp │ │ │ ├── EFM32ZG_aes_ctr_128.ewd │ │ │ ├── EFM32ZG_aes_ctr_128.ewp │ │ │ └── aes_ctr_128.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_ctr_256 │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_aes_ctr_256.slsproj │ │ │ ├── STK3600_EFM32LG_aes_ctr_256.slsproj │ │ │ ├── STK3700_EFM32GG_aes_ctr_256.slsproj │ │ │ ├── STK3800_EFM32WG_aes_ctr_256.slsproj │ │ │ └── STKXXX_EFM32G_aes_ctr_256.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_ctr_256.xml │ │ │ ├── EFM32G_aes_ctr_256.xml │ │ │ ├── EFM32LG_aes_ctr_256.xml │ │ │ ├── EFM32TG_aes_ctr_256.xml │ │ │ └── EFM32WG_aes_ctr_256.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_ctr_256.ewd │ │ │ ├── EFM32GG_aes_ctr_256.ewp │ │ │ ├── EFM32G_aes_ctr_256.ewd │ │ │ ├── EFM32G_aes_ctr_256.ewp │ │ │ ├── EFM32LG_aes_ctr_256.ewd │ │ │ ├── EFM32LG_aes_ctr_256.ewp │ │ │ ├── EFM32TG_aes_ctr_256.ewd │ │ │ ├── EFM32TG_aes_ctr_256.ewp │ │ │ ├── EFM32WG_aes_ctr_256.ewd │ │ │ ├── EFM32WG_aes_ctr_256.ewp │ │ │ └── aes_ctr_256.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_ecb_128 │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_aes_ecb_128.slsproj │ │ │ ├── STK3200_EFM32ZG_aes_ecb_128.slsproj │ │ │ ├── STK3300_EFM32TG_aes_ecb_128.slsproj │ │ │ ├── STK3600_EFM32LG_aes_ecb_128.slsproj │ │ │ ├── STK3700_EFM32GG_aes_ecb_128.slsproj │ │ │ ├── STK3800_EFM32WG_aes_ecb_128.slsproj │ │ │ └── STKXXX_EFM32G_aes_ecb_128.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_ecb_128.xml │ │ │ ├── EFM32G_aes_ecb_128.xml │ │ │ ├── EFM32HG_aes_ecb_128.xml │ │ │ ├── EFM32LG_aes_ecb_128.xml │ │ │ ├── EFM32TG_aes_ecb_128.xml │ │ │ ├── EFM32WG_aes_ecb_128.xml │ │ │ └── EFM32ZG_aes_ecb_128.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_ecb_128.ewd │ │ │ ├── EFM32GG_aes_ecb_128.ewp │ │ │ ├── EFM32G_aes_ecb_128.ewd │ │ │ ├── EFM32G_aes_ecb_128.ewp │ │ │ ├── EFM32HG_aes_ecb_128.ewd │ │ │ ├── EFM32HG_aes_ecb_128.ewp │ │ │ ├── EFM32LG_aes_ecb_128.ewd │ │ │ ├── EFM32LG_aes_ecb_128.ewp │ │ │ ├── EFM32TG_aes_ecb_128.ewd │ │ │ ├── EFM32TG_aes_ecb_128.ewp │ │ │ ├── EFM32WG_aes_ecb_128.ewd │ │ │ ├── EFM32WG_aes_ecb_128.ewp │ │ │ ├── EFM32ZG_aes_ecb_128.ewd │ │ │ ├── EFM32ZG_aes_ecb_128.ewp │ │ │ └── aes_ecb_128.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_ecb_256 │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_aes_ecb_256.slsproj │ │ │ ├── STK3600_EFM32LG_aes_ecb_256.slsproj │ │ │ ├── STK3700_EFM32GG_aes_ecb_256.slsproj │ │ │ ├── STK3800_EFM32WG_aes_ecb_256.slsproj │ │ │ └── STKXXX_EFM32G_aes_ecb_256.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_ecb_256.xml │ │ │ ├── EFM32G_aes_ecb_256.xml │ │ │ ├── EFM32LG_aes_ecb_256.xml │ │ │ ├── EFM32TG_aes_ecb_256.xml │ │ │ └── EFM32WG_aes_ecb_256.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_ecb_256.ewd │ │ │ ├── EFM32GG_aes_ecb_256.ewp │ │ │ ├── EFM32G_aes_ecb_256.ewd │ │ │ ├── EFM32G_aes_ecb_256.ewp │ │ │ ├── EFM32LG_aes_ecb_256.ewd │ │ │ ├── EFM32LG_aes_ecb_256.ewp │ │ │ ├── EFM32TG_aes_ecb_256.ewd │ │ │ ├── EFM32TG_aes_ecb_256.ewp │ │ │ ├── EFM32WG_aes_ecb_256.ewd │ │ │ ├── EFM32WG_aes_ecb_256.ewp │ │ │ └── aes_ecb_256.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── aes_ofb_128 │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_aes_ofb_128.slsproj │ │ │ ├── STK3200_EFM32ZG_aes_ofb_128.slsproj │ │ │ ├── STK3300_EFM32TG_aes_ofb_128.slsproj │ │ │ ├── STK3600_EFM32LG_aes_ofb_128.slsproj │ │ │ ├── STK3700_EFM32GG_aes_ofb_128.slsproj │ │ │ ├── STK3800_EFM32WG_aes_ofb_128.slsproj │ │ │ └── STKXXX_EFM32G_aes_ofb_128.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_aes_ofb_128.xml │ │ │ ├── EFM32G_aes_ofb_128.xml │ │ │ ├── EFM32HG_aes_ofb_128.xml │ │ │ ├── EFM32LG_aes_ofb_128.xml │ │ │ ├── EFM32TG_aes_ofb_128.xml │ │ │ ├── EFM32WG_aes_ofb_128.xml │ │ │ └── EFM32ZG_aes_ofb_128.xml │ │ ├── iar │ │ │ ├── EFM32GG_aes_ofb_128.ewd │ │ │ ├── EFM32GG_aes_ofb_128.ewp │ │ │ ├── EFM32G_aes_ofb_128.ewd │ │ │ ├── EFM32G_aes_ofb_128.ewp │ │ │ ├── EFM32HG_aes_ofb_128.ewd │ │ │ ├── EFM32HG_aes_ofb_128.ewp │ │ │ ├── EFM32LG_aes_ofb_128.ewd │ │ │ ├── EFM32LG_aes_ofb_128.ewp │ │ │ ├── EFM32TG_aes_ofb_128.ewd │ │ │ ├── EFM32TG_aes_ofb_128.ewp │ │ │ ├── EFM32WG_aes_ofb_128.ewd │ │ │ ├── EFM32WG_aes_ofb_128.ewp │ │ │ ├── EFM32ZG_aes_ofb_128.ewd │ │ │ ├── EFM32ZG_aes_ofb_128.ewp │ │ │ └── aes_ofb_128.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── aes_ofb_256 │ │ ├── SimplicityStudio │ │ ├── STK3300_EFM32TG_aes_ofb_256.slsproj │ │ ├── STK3600_EFM32LG_aes_ofb_256.slsproj │ │ ├── STK3700_EFM32GG_aes_ofb_256.slsproj │ │ ├── STK3800_EFM32WG_aes_ofb_256.slsproj │ │ └── STKXXX_EFM32G_aes_ofb_256.slsproj │ │ ├── doc │ │ ├── EFM32GG_aes_ofb_256.xml │ │ ├── EFM32G_aes_ofb_256.xml │ │ ├── EFM32LG_aes_ofb_256.xml │ │ ├── EFM32TG_aes_ofb_256.xml │ │ └── EFM32WG_aes_ofb_256.xml │ │ ├── iar │ │ ├── EFM32GG_aes_ofb_256.ewd │ │ ├── EFM32GG_aes_ofb_256.ewp │ │ ├── EFM32G_aes_ofb_256.ewd │ │ ├── EFM32G_aes_ofb_256.ewp │ │ ├── EFM32LG_aes_ofb_256.ewd │ │ ├── EFM32LG_aes_ofb_256.ewp │ │ ├── EFM32TG_aes_ofb_256.ewd │ │ ├── EFM32TG_aes_ofb_256.ewp │ │ ├── EFM32WG_aes_ofb_256.ewd │ │ ├── EFM32WG_aes_ofb_256.ewp │ │ └── aes_ofb_256.eww │ │ ├── readme.txt │ │ └── src │ │ └── main_s0.c ├── burtc │ ├── burtc_backup_domain │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_burtc_backup_domain.slsproj │ │ │ ├── STK3700_EFM32GG_burtc_backup_domain.slsproj │ │ │ └── STK3800_EFM32WG_burtc_backup_domain.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_burtc_backup_domain.xml │ │ │ ├── EFM32LG_burtc_backup_domain.xml │ │ │ └── EFM32WG_burtc_backup_domain.xml │ │ ├── iar │ │ │ ├── EFM32GG_burtc_backup_domain.ewd │ │ │ ├── EFM32GG_burtc_backup_domain.ewp │ │ │ ├── EFM32LG_burtc_backup_domain.ewd │ │ │ ├── EFM32LG_burtc_backup_domain.ewp │ │ │ ├── EFM32WG_burtc_backup_domain.ewd │ │ │ ├── EFM32WG_burtc_backup_domain.ewp │ │ │ └── burtc_backup_domain.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── burtc_em4_wakeup_retention │ │ ├── SimplicityStudio │ │ ├── STK3600_EFM32LG_burtc_em4_wakeup_retention.slsproj │ │ ├── STK3700_EFM32GG_burtc_em4_wakeup_retention.slsproj │ │ └── STK3800_EFM32WG_burtc_em4_wakeup_retention.slsproj │ │ ├── doc │ │ ├── EFM32GG_burtc_em4_wakeup_retention.xml │ │ ├── EFM32LG_burtc_em4_wakeup_retention.xml │ │ └── EFM32WG_burtc_em4_wakeup_retention.xml │ │ ├── iar │ │ ├── EFM32GG_burtc_em4_wakeup_retention.ewd │ │ ├── EFM32GG_burtc_em4_wakeup_retention.ewp │ │ ├── EFM32LG_burtc_em4_wakeup_retention.ewd │ │ ├── EFM32LG_burtc_em4_wakeup_retention.ewp │ │ ├── EFM32WG_burtc_em4_wakeup_retention.ewd │ │ ├── EFM32WG_burtc_em4_wakeup_retention.ewp │ │ └── burtc_em4_wakeup_retention.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── dac │ └── dac_voltage │ │ ├── SimplicityStudio │ │ ├── STK3600_EFM32LG_dac_voltage.slsproj │ │ ├── STK3700_EFM32GG_dac_voltage.slsproj │ │ ├── STK3800_EFM32WG_dac_voltage.slsproj │ │ └── STKXXX_EFM32G_dac_voltage.slsproj │ │ ├── doc │ │ ├── EFM32GG_dac_voltage.xml │ │ ├── EFM32G_dac_voltage.xml │ │ ├── EFM32LG_dac_voltage.xml │ │ └── EFM32WG_dac_voltage.xml │ │ ├── iar │ │ ├── EFM32GG_dac_voltage.ewd │ │ ├── EFM32GG_dac_voltage.ewp │ │ ├── EFM32G_dac_voltage.ewd │ │ ├── EFM32G_dac_voltage.ewp │ │ ├── EFM32LG_dac_voltage.ewd │ │ ├── EFM32LG_dac_voltage.ewp │ │ ├── EFM32WG_dac_voltage.ewd │ │ ├── EFM32WG_dac_voltage.ewp │ │ └── dac_voltage.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── dma │ ├── 2d_copy │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_dma_2d_copy.slsproj │ │ │ ├── STK3700_EFM32GG_dma_2d_copy.slsproj │ │ │ └── STK3800_EFM32WG_dma_2d_copy.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_2d_copy.xml │ │ │ ├── EFM32LG_dma_2d_copy.xml │ │ │ └── EFM32WG_dma_2d_copy.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_2d_copy.ewd │ │ │ ├── EFM32GG_dma_2d_copy.ewp │ │ │ ├── EFM32LG_dma_2d_copy.ewd │ │ │ ├── EFM32LG_dma_2d_copy.ewp │ │ │ ├── EFM32WG_dma_2d_copy.ewd │ │ │ ├── EFM32WG_dma_2d_copy.ewp │ │ │ └── ldma_2d_copy.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── linked_list │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_dma_linked_list.slsproj │ │ │ ├── STK3200_EFM32ZG_dma_linked_list.slsproj │ │ │ ├── STK3300_EFM32TG_dma_linked_list.slsproj │ │ │ ├── STK3600_EFM32LG_dma_linked_list.slsproj │ │ │ ├── STK3700_EFM32GG_dma_linked_list.slsproj │ │ │ ├── STK3800_EFM32WG_dma_linked_list.slsproj │ │ │ └── STKXXX_EFM32G_dma_linked_list.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_linked_list.xml │ │ │ ├── EFM32G_dma_linked_list.xml │ │ │ ├── EFM32HG_dma_linked_list.xml │ │ │ ├── EFM32LG_dma_linked_list.xml │ │ │ ├── EFM32TG_dma_linked_list.xml │ │ │ ├── EFM32WG_dma_linked_list.xml │ │ │ └── EFM32ZG_dma_linked_list.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_linked_list.ewd │ │ │ ├── EFM32GG_dma_linked_list.ewp │ │ │ ├── EFM32G_dma_linked_list.ewd │ │ │ ├── EFM32G_dma_linked_list.ewp │ │ │ ├── EFM32HG_dma_linked_list.ewd │ │ │ ├── EFM32HG_dma_linked_list.ewp │ │ │ ├── EFM32LG_dma_linked_list.ewd │ │ │ ├── EFM32LG_dma_linked_list.ewp │ │ │ ├── EFM32TG_dma_linked_list.ewd │ │ │ ├── EFM32TG_dma_linked_list.ewp │ │ │ ├── EFM32WG_dma_linked_list.ewd │ │ │ ├── EFM32WG_dma_linked_list.ewp │ │ │ ├── EFM32ZG_dma_linked_list.ewd │ │ │ ├── EFM32ZG_dma_linked_list.ewp │ │ │ └── ldma_linked_list.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── linked_list_looped │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_dma_linked_list_looped.slsproj │ │ │ ├── STK3700_EFM32GG_dma_linked_list_looped.slsproj │ │ │ └── STK3800_EFM32WG_dma_linked_list_looped.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_linked_list_looped.xml │ │ │ ├── EFM32LG_dma_linked_list_looped.xml │ │ │ └── EFM32WG_dma_linked_list_looped.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_linked_list_looped.ewd │ │ │ ├── EFM32GG_dma_linked_list_looped.ewp │ │ │ ├── EFM32LG_dma_linked_list_looped.ewd │ │ │ ├── EFM32LG_dma_linked_list_looped.ewp │ │ │ ├── EFM32WG_dma_linked_list_looped.ewd │ │ │ ├── EFM32WG_dma_linked_list_looped.ewp │ │ │ └── ldma_linked_list_looped.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ping_pong │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_dma_ping_pong.slsproj │ │ │ ├── STK3200_EFM32ZG_dma_ping_pong.slsproj │ │ │ ├── STK3300_EFM32TG_dma_ping_pong.slsproj │ │ │ ├── STK3600_EFM32LG_dma_ping_pong.slsproj │ │ │ ├── STK3700_EFM32GG_dma_ping_pong.slsproj │ │ │ ├── STK3800_EFM32WG_dma_ping_pong.slsproj │ │ │ └── STKXXX_EFM32G_dma_ping_pong.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_ping_pong.xml │ │ │ ├── EFM32G_dma_ping_pong.xml │ │ │ ├── EFM32HG_dma_ping_pong.xml │ │ │ ├── EFM32LG_dma_ping_pong.xml │ │ │ ├── EFM32TG_dma_ping_pong.xml │ │ │ ├── EFM32WG_dma_ping_pong.xml │ │ │ └── EFM32ZG_dma_ping_pong.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_ping_pong.ewd │ │ │ ├── EFM32GG_dma_ping_pong.ewp │ │ │ ├── EFM32G_dma_ping_pong.ewd │ │ │ ├── EFM32G_dma_ping_pong.ewp │ │ │ ├── EFM32HG_dma_ping_pong.ewd │ │ │ ├── EFM32HG_dma_ping_pong.ewp │ │ │ ├── EFM32LG_dma_ping_pong.ewd │ │ │ ├── EFM32LG_dma_ping_pong.ewp │ │ │ ├── EFM32TG_dma_ping_pong.ewd │ │ │ ├── EFM32TG_dma_ping_pong.ewp │ │ │ ├── EFM32WG_dma_ping_pong.ewd │ │ │ ├── EFM32WG_dma_ping_pong.ewp │ │ │ ├── EFM32ZG_dma_ping_pong.ewd │ │ │ ├── EFM32ZG_dma_ping_pong.ewp │ │ │ └── ldma_ping_pong.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── scatter_gather │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_dma_scatter_gather.slsproj │ │ │ ├── STK3200_EFM32ZG_dma_scatter_gather.slsproj │ │ │ ├── STK3300_EFM32TG_dma_scatter_gather.slsproj │ │ │ ├── STK3600_EFM32LG_dma_scatter_gather.slsproj │ │ │ ├── STK3700_EFM32GG_dma_scatter_gather.slsproj │ │ │ ├── STK3800_EFM32WG_dma_scatter_gather.slsproj │ │ │ └── STKXXX_EFM32G_dma_scatter_gather.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_scatter_gather.xml │ │ │ ├── EFM32G_dma_scatter_gather.xml │ │ │ ├── EFM32HG_dma_scatter_gather.xml │ │ │ ├── EFM32LG_dma_scatter_gather.xml │ │ │ ├── EFM32TG_dma_scatter_gather.xml │ │ │ ├── EFM32WG_dma_scatter_gather.xml │ │ │ └── EFM32ZG_dma_scatter_gather.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_scatter_gather.ewd │ │ │ ├── EFM32GG_dma_scatter_gather.ewp │ │ │ ├── EFM32G_dma_scatter_gather.ewd │ │ │ ├── EFM32G_dma_scatter_gather.ewp │ │ │ ├── EFM32HG_dma_scatter_gather.ewd │ │ │ ├── EFM32HG_dma_scatter_gather.ewp │ │ │ ├── EFM32LG_dma_scatter_gather.ewd │ │ │ ├── EFM32LG_dma_scatter_gather.ewp │ │ │ ├── EFM32TG_dma_scatter_gather.ewd │ │ │ ├── EFM32TG_dma_scatter_gather.ewp │ │ │ ├── EFM32WG_dma_scatter_gather.ewd │ │ │ ├── EFM32WG_dma_scatter_gather.ewp │ │ │ ├── EFM32ZG_dma_scatter_gather.ewd │ │ │ ├── EFM32ZG_dma_scatter_gather.ewp │ │ │ └── ldma_scatter_gather.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── single_button │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_dma_single_button.slsproj │ │ │ ├── STK3200_EFM32ZG_dma_single_button.slsproj │ │ │ ├── STK3300_EFM32TG_dma_single_button.slsproj │ │ │ ├── STK3600_EFM32LG_dma_single_button.slsproj │ │ │ ├── STK3700_EFM32GG_dma_single_button.slsproj │ │ │ ├── STK3800_EFM32WG_dma_single_button.slsproj │ │ │ └── STKXXX_EFM32G_dma_single_button.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_single_button.xml │ │ │ ├── EFM32G_dma_single_button.xml │ │ │ ├── EFM32HG_dma_single_button.xml │ │ │ ├── EFM32LG_dma_single_button.xml │ │ │ ├── EFM32TG_dma_single_button.xml │ │ │ ├── EFM32WG_dma_single_button.xml │ │ │ └── EFM32ZG_dma_single_button.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_single_button.ewd │ │ │ ├── EFM32GG_dma_single_button.ewp │ │ │ ├── EFM32G_dma_single_button.ewd │ │ │ ├── EFM32G_dma_single_button.ewp │ │ │ ├── EFM32HG_dma_single_button.ewd │ │ │ ├── EFM32HG_dma_single_button.ewp │ │ │ ├── EFM32LG_dma_single_button.ewd │ │ │ ├── EFM32LG_dma_single_button.ewp │ │ │ ├── EFM32TG_dma_single_button.ewd │ │ │ ├── EFM32TG_dma_single_button.ewp │ │ │ ├── EFM32WG_dma_single_button.ewd │ │ │ ├── EFM32WG_dma_single_button.ewp │ │ │ ├── EFM32ZG_dma_single_button.ewd │ │ │ ├── EFM32ZG_dma_single_button.ewp │ │ │ └── ldma_single_button.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── single_looped │ │ ├── SimplicityStudio │ │ │ ├── STK3600_EFM32LG_dma_single_looped.slsproj │ │ │ ├── STK3700_EFM32GG_dma_single_looped.slsproj │ │ │ └── STK3800_EFM32WG_dma_single_looped.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_dma_single_looped.xml │ │ │ ├── EFM32LG_dma_single_looped.xml │ │ │ └── EFM32WG_dma_single_looped.xml │ │ ├── iar │ │ │ ├── EFM32GG_dma_single_looped.ewd │ │ │ ├── EFM32GG_dma_single_looped.ewp │ │ │ ├── EFM32LG_dma_single_looped.ewd │ │ │ ├── EFM32LG_dma_single_looped.ewp │ │ │ ├── EFM32WG_dma_single_looped.ewd │ │ │ ├── EFM32WG_dma_single_looped.ewp │ │ │ └── ldma_single_looped.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── single_software │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_dma_single_software.slsproj │ │ ├── STK3200_EFM32ZG_dma_single_software.slsproj │ │ ├── STK3300_EFM32TG_dma_single_software.slsproj │ │ ├── STK3600_EFM32LG_dma_single_software.slsproj │ │ ├── STK3700_EFM32GG_dma_single_software.slsproj │ │ ├── STK3800_EFM32WG_dma_single_software.slsproj │ │ └── STKXXX_EFM32G_dma_single_software.slsproj │ │ ├── doc │ │ ├── EFM32GG_dma_single_software.xml │ │ ├── EFM32G_dma_single_software.xml │ │ ├── EFM32HG_dma_single_software.xml │ │ ├── EFM32LG_dma_single_software.xml │ │ ├── EFM32TG_dma_single_software.xml │ │ ├── EFM32WG_dma_single_software.xml │ │ └── EFM32ZG_dma_single_software.xml │ │ ├── iar │ │ ├── EFM32GG_dma_single_software.ewd │ │ ├── EFM32GG_dma_single_software.ewp │ │ ├── EFM32G_dma_single_software.ewd │ │ ├── EFM32G_dma_single_software.ewp │ │ ├── EFM32HG_dma_single_software.ewd │ │ ├── EFM32HG_dma_single_software.ewp │ │ ├── EFM32LG_dma_single_software.ewd │ │ ├── EFM32LG_dma_single_software.ewp │ │ ├── EFM32TG_dma_single_software.ewd │ │ ├── EFM32TG_dma_single_software.ewp │ │ ├── EFM32WG_dma_single_software.ewd │ │ ├── EFM32WG_dma_single_software.ewp │ │ ├── EFM32ZG_dma_single_software.ewd │ │ ├── EFM32ZG_dma_single_software.ewp │ │ └── ldma_single_software.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── gpio │ ├── EM4_WakeUp │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_EM4_WakeUp.slsproj │ │ │ ├── STK3200_EFM32ZG_EM4_WakeUp.slsproj │ │ │ ├── STK3300_EFM32TG_EM4_WakeUp.slsproj │ │ │ ├── STK3600_EFM32LG_EM4_WakeUp.slsproj │ │ │ ├── STK3700_EFM32GG_EM4_WakeUp.slsproj │ │ │ ├── STK3800_EFM32WG_EM4_WakeUp.slsproj │ │ │ └── STKXXX_EFM32G_EM4_WakeUp.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_EM4_WakeUp.xml │ │ │ ├── EFM32G_EM4_WakeUp.xml │ │ │ ├── EFM32HG_EM4_WakeUp.xml │ │ │ ├── EFM32LG_EM4_WakeUp.xml │ │ │ ├── EFM32TG_EM4_WakeUp.xml │ │ │ ├── EFM32WG_EM4_WakeUp.xml │ │ │ └── EFM32ZG_EM4_WakeUp.xml │ │ ├── iar │ │ │ ├── EFM32GG_EM4_WakeUp.ewd │ │ │ ├── EFM32GG_EM4_WakeUp.ewp │ │ │ ├── EFM32G_EM4_WakeUp.ewd │ │ │ ├── EFM32G_EM4_WakeUp.ewp │ │ │ ├── EFM32HG_EM4_WakeUp.ewd │ │ │ ├── EFM32HG_EM4_WakeUp.ewp │ │ │ ├── EFM32LG_EM4_WakeUp.ewd │ │ │ ├── EFM32LG_EM4_WakeUp.ewp │ │ │ ├── EFM32TG_EM4_WakeUp.ewd │ │ │ ├── EFM32TG_EM4_WakeUp.ewp │ │ │ ├── EFM32WG_EM4_WakeUp.ewd │ │ │ ├── EFM32WG_EM4_WakeUp.ewp │ │ │ ├── EFM32ZG_EM4_WakeUp.ewd │ │ │ ├── EFM32ZG_EM4_WakeUp.ewp │ │ │ └── EM4_WakeUp.eww │ │ ├── readme_g.txt │ │ ├── readme_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_gg_wg_lg.c │ │ │ ├── main_hg.c │ │ │ ├── main_tg.c │ │ │ └── main_zg.c │ ├── gpio_conf │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_gpio_conf.slsproj │ │ │ ├── STK3200_EFM32ZG_gpio_conf.slsproj │ │ │ ├── STK3300_EFM32TG_gpio_conf.slsproj │ │ │ ├── STK3600_EFM32LG_gpio_conf.slsproj │ │ │ ├── STK3700_EFM32GG_gpio_conf.slsproj │ │ │ ├── STK3800_EFM32WG_gpio_conf.slsproj │ │ │ └── STKXXX_EFM32G_gpio_conf.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_gpio_conf.xml │ │ │ ├── EFM32G_gpio_conf.xml │ │ │ ├── EFM32HG_gpio_conf.xml │ │ │ ├── EFM32LG_gpio_conf.xml │ │ │ ├── EFM32TG_gpio_conf.xml │ │ │ ├── EFM32WG_gpio_conf.xml │ │ │ └── EFM32ZG_gpio_conf.xml │ │ ├── iar │ │ │ ├── EFM32GG_gpio_conf.ewd │ │ │ ├── EFM32GG_gpio_conf.ewp │ │ │ ├── EFM32G_gpio_conf.ewd │ │ │ ├── EFM32G_gpio_conf.ewp │ │ │ ├── EFM32HG_gpio_conf.ewd │ │ │ ├── EFM32HG_gpio_conf.ewp │ │ │ ├── EFM32LG_gpio_conf.ewd │ │ │ ├── EFM32LG_gpio_conf.ewp │ │ │ ├── EFM32TG_gpio_conf.ewd │ │ │ ├── EFM32TG_gpio_conf.ewp │ │ │ ├── EFM32WG_gpio_conf.ewd │ │ │ ├── EFM32WG_gpio_conf.ewp │ │ │ ├── EFM32ZG_gpio_conf.ewd │ │ │ ├── EFM32ZG_gpio_conf.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_gpio_conf.c │ ├── gpio_periph │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_gpio_periph.slsproj │ │ │ ├── STK3200_EFM32ZG_gpio_periph.slsproj │ │ │ ├── STK3300_EFM32TG_gpio_periph.slsproj │ │ │ ├── STK3600_EFM32LG_gpio_periph.slsproj │ │ │ ├── STK3700_EFM32GG_gpio_periph.slsproj │ │ │ ├── STK3800_EFM32WG_gpio_periph.slsproj │ │ │ └── STKXXX_EFM32G_gpio_periph.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_gpio_periph.xml │ │ │ ├── EFM32G_gpio_periph.xml │ │ │ ├── EFM32HG_gpio_periph.xml │ │ │ ├── EFM32LG_gpio_periph.xml │ │ │ ├── EFM32TG_gpio_periph.xml │ │ │ ├── EFM32WG_gpio_periph.xml │ │ │ └── EFM32ZG_gpio_periph.xml │ │ ├── iar │ │ │ ├── EFM32GG_gpio_periph.ewd │ │ │ ├── EFM32GG_gpio_periph.ewp │ │ │ ├── EFM32G_gpio_periph.ewd │ │ │ ├── EFM32G_gpio_periph.ewp │ │ │ ├── EFM32HG_gpio_periph.ewd │ │ │ ├── EFM32HG_gpio_periph.ewp │ │ │ ├── EFM32LG_gpio_periph.ewd │ │ │ ├── EFM32LG_gpio_periph.ewp │ │ │ ├── EFM32TG_gpio_periph.ewd │ │ │ ├── EFM32TG_gpio_periph.ewp │ │ │ ├── EFM32WG_gpio_periph.ewd │ │ │ ├── EFM32WG_gpio_periph.ewp │ │ │ ├── EFM32ZG_gpio_periph.ewd │ │ │ ├── EFM32ZG_gpio_periph.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ ├── readme_m0.txt │ │ └── src │ │ │ ├── main_gpio_periph.c │ │ │ └── main_gpio_periph_m0.c │ ├── gpio_prs │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_gpio_prs.slsproj │ │ │ ├── STK3200_EFM32ZG_gpio_prs.slsproj │ │ │ ├── STK3300_EFM32TG_gpio_prs.slsproj │ │ │ ├── STK3600_EFM32LG_gpio_prs.slsproj │ │ │ ├── STK3700_EFM32GG_gpio_prs.slsproj │ │ │ ├── STK3800_EFM32WG_gpio_prs.slsproj │ │ │ └── STKXXX_EFM32G_gpio_prs.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_gpio_prs.xml │ │ │ ├── EFM32G_gpio_prs.xml │ │ │ ├── EFM32HG_gpio_prs.xml │ │ │ ├── EFM32LG_gpio_prs.xml │ │ │ ├── EFM32TG_gpio_prs.xml │ │ │ ├── EFM32WG_gpio_prs.xml │ │ │ └── EFM32ZG_gpio_prs.xml │ │ ├── iar │ │ │ ├── EFM32GG_gpio_prs.ewd │ │ │ ├── EFM32GG_gpio_prs.ewp │ │ │ ├── EFM32G_gpio_prs.ewd │ │ │ ├── EFM32G_gpio_prs.ewp │ │ │ ├── EFM32HG_gpio_prs.ewd │ │ │ ├── EFM32HG_gpio_prs.ewp │ │ │ ├── EFM32LG_gpio_prs.ewd │ │ │ ├── EFM32LG_gpio_prs.ewp │ │ │ ├── EFM32TG_gpio_prs.ewd │ │ │ ├── EFM32TG_gpio_prs.ewp │ │ │ ├── EFM32WG_gpio_prs.ewd │ │ │ ├── EFM32WG_gpio_prs.ewp │ │ │ ├── EFM32ZG_gpio_prs.ewd │ │ │ ├── EFM32ZG_gpio_prs.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_gpio_prs.c │ ├── switch_led_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_switch_led_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_switch_led_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_switch_led_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_switch_led_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_switch_led_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_switch_led_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_switch_led_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_switch_led_interrupt.xml │ │ │ ├── EFM32G_switch_led_interrupt.xml │ │ │ ├── EFM32HG_switch_led_interrupt.xml │ │ │ ├── EFM32LG_switch_led_interrupt.xml │ │ │ ├── EFM32TG_switch_led_interrupt.xml │ │ │ ├── EFM32WG_switch_led_interrupt.xml │ │ │ └── EFM32ZG_switch_led_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_switch_led_interrupt.ewd │ │ │ ├── EFM32GG_switch_led_interrupt.ewp │ │ │ ├── EFM32G_switch_led_interrupt.ewd │ │ │ ├── EFM32G_switch_led_interrupt.ewp │ │ │ ├── EFM32HG_switch_led_interrupt.ewd │ │ │ ├── EFM32HG_switch_led_interrupt.ewp │ │ │ ├── EFM32LG_switch_led_interrupt.ewd │ │ │ ├── EFM32LG_switch_led_interrupt.ewp │ │ │ ├── EFM32TG_switch_led_interrupt.ewd │ │ │ ├── EFM32TG_switch_led_interrupt.ewp │ │ │ ├── EFM32WG_switch_led_interrupt.ewd │ │ │ ├── EFM32WG_switch_led_interrupt.ewp │ │ │ ├── EFM32ZG_switch_led_interrupt.ewd │ │ │ ├── EFM32ZG_switch_led_interrupt.ewp │ │ │ └── switch_led_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0.c │ │ │ └── main_tg.c │ └── switch_led_polled │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_switch_led_polled.slsproj │ │ ├── STK3200_EFM32ZG_switch_led_polled.slsproj │ │ ├── STK3300_EFM32TG_switch_led_polled.slsproj │ │ ├── STK3600_EFM32LG_switch_led_polled.slsproj │ │ ├── STK3700_EFM32GG_switch_led_polled.slsproj │ │ ├── STK3800_EFM32WG_switch_led_polled.slsproj │ │ └── STKXXX_EFM32G_switch_led_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG_switch_led_polled.xml │ │ ├── EFM32G_switch_led_polled.xml │ │ ├── EFM32HG_switch_led_polled.xml │ │ ├── EFM32LG_switch_led_polled.xml │ │ ├── EFM32TG_switch_led_polled.xml │ │ ├── EFM32WG_switch_led_polled.xml │ │ └── EFM32ZG_switch_led_polled.xml │ │ ├── iar │ │ ├── EFM32GG_switch_led_polled.ewd │ │ ├── EFM32GG_switch_led_polled.ewp │ │ ├── EFM32G_switch_led_polled.ewd │ │ ├── EFM32G_switch_led_polled.ewp │ │ ├── EFM32HG_switch_led_polled.ewd │ │ ├── EFM32HG_switch_led_polled.ewp │ │ ├── EFM32LG_switch_led_polled.ewd │ │ ├── EFM32LG_switch_led_polled.ewp │ │ ├── EFM32TG_switch_led_polled.ewd │ │ ├── EFM32TG_switch_led_polled.ewp │ │ ├── EFM32WG_switch_led_polled.ewd │ │ ├── EFM32WG_switch_led_polled.ewp │ │ ├── EFM32ZG_switch_led_polled.ewd │ │ ├── EFM32ZG_switch_led_polled.ewp │ │ └── switch_led_polled.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── i2c │ └── i2c │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_i2c.slsproj │ │ ├── STK3200_EFM32ZG_i2c.slsproj │ │ ├── STK3600_EFM32LG_i2c.slsproj │ │ ├── STK3700_EFM32GG_i2c.slsproj │ │ ├── STK3800_EFM32WG_i2c.slsproj │ │ └── STKXXX_EFM32G_i2c.slsproj │ │ ├── doc │ │ ├── EFM32GG_i2c.xml │ │ ├── EFM32G_i2c.xml │ │ ├── EFM32HG_i2c.xml │ │ ├── EFM32LG_i2c.xml │ │ ├── EFM32WG_i2c.xml │ │ └── EFM32ZG_i2c.xml │ │ ├── iar │ │ ├── EFM32GG_i2c.ewd │ │ ├── EFM32GG_i2c.ewp │ │ ├── EFM32G_i2c.ewd │ │ ├── EFM32G_i2c.ewp │ │ ├── EFM32HG_i2c.ewd │ │ ├── EFM32HG_i2c.ewp │ │ ├── EFM32LG_i2c.ewd │ │ ├── EFM32LG_i2c.ewp │ │ ├── EFM32WG_i2c.ewd │ │ ├── EFM32WG_i2c.ewp │ │ ├── EFM32ZG_i2c.ewd │ │ ├── EFM32ZG_i2c.ewp │ │ └── i2c.eww │ │ ├── readme_g8xx.txt │ │ ├── readme_gg_lg_wg.txt │ │ ├── readme_zg_hg.txt │ │ └── src │ │ ├── main_g8xx.c │ │ ├── main_gg_lg_wg.c │ │ └── main_zg_hg.c ├── idac │ ├── idac_output_constant │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_idac_output_constant.slsproj │ │ │ └── STK3200_EFM32ZG_idac_output_constant.slsproj │ │ ├── doc │ │ │ ├── EFM32HG_idac_output_constant.xml │ │ │ └── EFM32ZG_idac_output_constant.xml │ │ ├── iar │ │ │ ├── EFM32HG_idac_output_constant.ewd │ │ │ ├── EFM32HG_idac_output_constant.ewp │ │ │ ├── EFM32ZG_idac_output_constant.ewd │ │ │ ├── EFM32ZG_idac_output_constant.ewp │ │ │ └── idac_output_constant.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── idac_timer_dma_waveform │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_idac_timer_dma_waveform.slsproj │ │ │ └── STK3200_EFM32ZG_idac_timer_dma_waveform.slsproj │ │ ├── doc │ │ │ ├── EFM32HG_idac_timer_dma_waveform.xml │ │ │ └── EFM32ZG_idac_timer_dma_waveform.xml │ │ ├── iar │ │ │ ├── EFM32HG_idac_timer_dma_waveform.ewd │ │ │ ├── EFM32HG_idac_timer_dma_waveform.ewp │ │ │ ├── EFM32ZG_idac_timer_dma_waveform.ewd │ │ │ ├── EFM32ZG_idac_timer_dma_waveform.ewp │ │ │ └── idac_timer_dma_waveform.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── idac_timer_prs │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_idac_timer_prs.slsproj │ │ └── STK3200_EFM32ZG_idac_timer_prs.slsproj │ │ ├── doc │ │ ├── EFM32HG_idac_timer_prs.xml │ │ └── EFM32ZG_idac_timer_prs.xml │ │ ├── iar │ │ ├── EFM32HG_idac_timer_prs.ewd │ │ ├── EFM32HG_idac_timer_prs.ewp │ │ ├── EFM32ZG_idac_timer_prs.ewd │ │ ├── EFM32ZG_idac_timer_prs.ewp │ │ └── idac_timer_prs.eww │ │ ├── readme.txt │ │ └── src │ │ └── main_s0.c ├── letimer │ ├── one_shot_output_compare │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_one_shot_output_compare.slsproj │ │ │ ├── STK3600_EFM32LG_one_shot_output_compare.slsproj │ │ │ ├── STK3700_EFM32GG_one_shot_output_compare.slsproj │ │ │ ├── STK3800_EFM32WG_one_shot_output_compare.slsproj │ │ │ └── STKXXX_EFM32G_one_shot_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_one_shot_output_compare.xml │ │ │ ├── EFM32G_one_shot_output_compare.xml │ │ │ ├── EFM32LG_one_shot_output_compare.xml │ │ │ ├── EFM32TG_one_shot_output_compare.xml │ │ │ └── EFM32WG_one_shot_output_compare.xml │ │ ├── iar │ │ │ ├── EFM32GG_one_shot_output_compare.ewd │ │ │ ├── EFM32GG_one_shot_output_compare.ewp │ │ │ ├── EFM32G_one_shot_output_compare.ewd │ │ │ ├── EFM32G_one_shot_output_compare.ewp │ │ │ ├── EFM32LG_one_shot_output_compare.ewd │ │ │ ├── EFM32LG_one_shot_output_compare.ewp │ │ │ ├── EFM32TG_one_shot_output_compare.ewd │ │ │ ├── EFM32TG_one_shot_output_compare.ewp │ │ │ ├── EFM32WG_one_shot_output_compare.ewd │ │ │ ├── EFM32WG_one_shot_output_compare.ewp │ │ │ └── one_shot_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── pulse_train │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_pulse_train.slsproj │ │ │ ├── STK3600_EFM32LG_pulse_train.slsproj │ │ │ ├── STK3700_EFM32GG_pulse_train.slsproj │ │ │ ├── STK3800_EFM32WG_pulse_train.slsproj │ │ │ └── STKXXX_EFM32G_pulse_train.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_pulse_train.xml │ │ │ ├── EFM32G_pulse_train.xml │ │ │ ├── EFM32LG_pulse_train.xml │ │ │ ├── EFM32TG_pulse_train.xml │ │ │ └── EFM32WG_pulse_train.xml │ │ ├── iar │ │ │ ├── EFM32GG_pulse_train.ewd │ │ │ ├── EFM32GG_pulse_train.ewp │ │ │ ├── EFM32G_pulse_train.ewd │ │ │ ├── EFM32G_pulse_train.ewp │ │ │ ├── EFM32LG_pulse_train.ewd │ │ │ ├── EFM32LG_pulse_train.ewp │ │ │ ├── EFM32TG_pulse_train.ewd │ │ │ ├── EFM32TG_pulse_train.ewp │ │ │ ├── EFM32WG_pulse_train.ewd │ │ │ ├── EFM32WG_pulse_train.ewp │ │ │ └── pulse_train.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── pulse_width_modulation │ │ ├── SimplicityStudio │ │ ├── STK3300_EFM32TG_pulse_width_modulation.slsproj │ │ ├── STK3600_EFM32LG_pulse_width_modulation.slsproj │ │ ├── STK3700_EFM32GG_pulse_width_modulation.slsproj │ │ ├── STK3800_EFM32WG_pulse_width_modulation.slsproj │ │ └── STKXXX_EFM32G_pulse_width_modulation.slsproj │ │ ├── doc │ │ ├── EFM32GG_pulse_width_modulation.xml │ │ ├── EFM32G_pulse_width_modulation.xml │ │ ├── EFM32LG_pulse_width_modulation.xml │ │ ├── EFM32TG_pulse_width_modulation.xml │ │ └── EFM32WG_pulse_width_modulation.xml │ │ ├── iar │ │ ├── EFM32GG_pulse_width_modulation.ewd │ │ ├── EFM32GG_pulse_width_modulation.ewp │ │ ├── EFM32G_pulse_width_modulation.ewd │ │ ├── EFM32G_pulse_width_modulation.ewp │ │ ├── EFM32LG_pulse_width_modulation.ewd │ │ ├── EFM32LG_pulse_width_modulation.ewp │ │ ├── EFM32TG_pulse_width_modulation.ewd │ │ ├── EFM32TG_pulse_width_modulation.ewp │ │ ├── EFM32WG_pulse_width_modulation.ewd │ │ ├── EFM32WG_pulse_width_modulation.ewp │ │ └── pulse_width_modulation.eww │ │ ├── readme.txt │ │ └── src │ │ └── main_s0.c ├── leuart │ ├── leuart_dma │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_leuart_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_leuart_dma.slsproj │ │ │ ├── STK3300_EFM32TG_leuart_dma.slsproj │ │ │ ├── STK3600_EFM32LG_leuart_dma.slsproj │ │ │ ├── STK3700_EFM32GG_leuart_dma.slsproj │ │ │ ├── STK3800_EFM32WG_leuart_dma.slsproj │ │ │ └── STKXXX_EFM32G_leuart_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_leuart_dma.xml │ │ │ ├── EFM32G_leuart_dma.xml │ │ │ ├── EFM32HG_leuart_dma.xml │ │ │ ├── EFM32LG_leuart_dma.xml │ │ │ ├── EFM32TG_leuart_dma.xml │ │ │ ├── EFM32WG_leuart_dma.xml │ │ │ └── EFM32ZG_leuart_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_leuart_dma.ewd │ │ │ ├── EFM32GG_leuart_dma.ewp │ │ │ ├── EFM32G_leuart_dma.ewd │ │ │ ├── EFM32G_leuart_dma.ewp │ │ │ ├── EFM32HG_leuart_dma.ewd │ │ │ ├── EFM32HG_leuart_dma.ewp │ │ │ ├── EFM32LG_leuart_dma.ewd │ │ │ ├── EFM32LG_leuart_dma.ewp │ │ │ ├── EFM32TG_leuart_dma.ewd │ │ │ ├── EFM32TG_leuart_dma.ewp │ │ │ ├── EFM32WG_leuart_dma.ewd │ │ │ ├── EFM32WG_leuart_dma.ewp │ │ │ ├── EFM32ZG_leuart_dma.ewd │ │ │ ├── EFM32ZG_leuart_dma.ewp │ │ │ └── leuart_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0.c │ │ │ └── main_zg_hg_g_tg.c │ ├── leuart_echo │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_leuart_echo.slsproj │ │ │ ├── STK3200_EFM32ZG_leuart_echo.slsproj │ │ │ ├── STK3300_EFM32TG_leuart_echo.slsproj │ │ │ ├── STK3600_EFM32LG_leuart_echo.slsproj │ │ │ ├── STK3700_EFM32GG_leuart_echo.slsproj │ │ │ ├── STK3800_EFM32WG_leuart_echo.slsproj │ │ │ └── STKXXX_EFM32G_leuart_echo.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_leuart_echo.xml │ │ │ ├── EFM32G_leuart_echo.xml │ │ │ ├── EFM32HG_leuart_echo.xml │ │ │ ├── EFM32LG_leuart_echo.xml │ │ │ ├── EFM32TG_leuart_echo.xml │ │ │ ├── EFM32WG_leuart_echo.xml │ │ │ └── EFM32ZG_leuart_echo.xml │ │ ├── iar │ │ │ ├── EFM32GG_leuart_echo.ewd │ │ │ ├── EFM32GG_leuart_echo.ewp │ │ │ ├── EFM32G_leuart_echo.ewd │ │ │ ├── EFM32G_leuart_echo.ewp │ │ │ ├── EFM32HG_leuart_echo.ewd │ │ │ ├── EFM32HG_leuart_echo.ewp │ │ │ ├── EFM32LG_leuart_echo.ewd │ │ │ ├── EFM32LG_leuart_echo.ewp │ │ │ ├── EFM32TG_leuart_echo.ewd │ │ │ ├── EFM32TG_leuart_echo.ewp │ │ │ ├── EFM32WG_leuart_echo.ewd │ │ │ ├── EFM32WG_leuart_echo.ewp │ │ │ ├── EFM32ZG_leuart_echo.ewd │ │ │ ├── EFM32ZG_leuart_echo.ewp │ │ │ └── leuart_echo.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── leuart_half_duplex │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_leuart_half_duplex.slsproj │ │ ├── STK3200_EFM32ZG_leuart_half_duplex.slsproj │ │ ├── STK3300_EFM32TG_leuart_half_duplex.slsproj │ │ ├── STK3600_EFM32LG_leuart_half_duplex.slsproj │ │ ├── STK3700_EFM32GG_leuart_half_duplex.slsproj │ │ ├── STK3800_EFM32WG_leuart_half_duplex.slsproj │ │ └── STKXXX_EFM32G_leuart_half_duplex.slsproj │ │ ├── doc │ │ ├── EFM32GG_leuart_half_duplex.xml │ │ ├── EFM32G_leuart_half_duplex.xml │ │ ├── EFM32HG_leuart_half_duplex.xml │ │ ├── EFM32LG_leuart_half_duplex.xml │ │ ├── EFM32TG_leuart_half_duplex.xml │ │ ├── EFM32WG_leuart_half_duplex.xml │ │ └── EFM32ZG_leuart_half_duplex.xml │ │ ├── iar │ │ ├── EFM32GG_leuart_half_duplex.ewd │ │ ├── EFM32GG_leuart_half_duplex.ewp │ │ ├── EFM32G_leuart_half_duplex.ewd │ │ ├── EFM32G_leuart_half_duplex.ewp │ │ ├── EFM32HG_leuart_half_duplex.ewd │ │ ├── EFM32HG_leuart_half_duplex.ewp │ │ ├── EFM32LG_leuart_half_duplex.ewd │ │ ├── EFM32LG_leuart_half_duplex.ewp │ │ ├── EFM32TG_leuart_half_duplex.ewd │ │ ├── EFM32TG_leuart_half_duplex.ewp │ │ ├── EFM32WG_leuart_half_duplex.ewd │ │ ├── EFM32WG_leuart_half_duplex.ewp │ │ ├── EFM32ZG_leuart_half_duplex.ewd │ │ ├── EFM32ZG_leuart_half_duplex.ewp │ │ └── leuart_half_duplex.eww │ │ ├── readme.txt │ │ └── src │ │ └── main_s0.c ├── msc │ ├── debug_lock │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_debug_lock.slsproj │ │ │ ├── STK3200_EFM32ZG_debug_lock.slsproj │ │ │ ├── STK3300_EFM32TG_debug_lock.slsproj │ │ │ ├── STK3600_EFM32LG_debug_lock.slsproj │ │ │ ├── STK3700_EFM32GG_debug_lock.slsproj │ │ │ ├── STK3800_EFM32WG_debug_lock.slsproj │ │ │ └── STKXXX_EFM32G_debug_lock.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_debug_lock.xml │ │ │ ├── EFM32G_debug_lock.xml │ │ │ ├── EFM32HG_debug_lock.xml │ │ │ ├── EFM32LG_debug_lock.xml │ │ │ ├── EFM32TG_debug_lock.xml │ │ │ ├── EFM32WG_debug_lock.xml │ │ │ └── EFM32ZG_debug_lock.xml │ │ ├── iar │ │ │ ├── EFM32GG_debug_lock.ewd │ │ │ ├── EFM32GG_debug_lock.ewp │ │ │ ├── EFM32G_debug_lock.ewd │ │ │ ├── EFM32G_debug_lock.ewp │ │ │ ├── EFM32HG_debug_lock.ewd │ │ │ ├── EFM32HG_debug_lock.ewp │ │ │ ├── EFM32LG_debug_lock.ewd │ │ │ ├── EFM32LG_debug_lock.ewp │ │ │ ├── EFM32TG_debug_lock.ewd │ │ │ ├── EFM32TG_debug_lock.ewp │ │ │ ├── EFM32WG_debug_lock.ewd │ │ │ ├── EFM32WG_debug_lock.ewp │ │ │ ├── EFM32ZG_debug_lock.ewd │ │ │ ├── EFM32ZG_debug_lock.ewp │ │ │ └── debug_lock.eww │ │ ├── readme_resetn.txt │ │ ├── src │ │ │ └── main_resetn.c │ │ └── test │ │ │ ├── EFM32_M0_unlock.jlink │ │ │ ├── EFM32_unlock.jlink │ │ │ ├── test_M0.bat │ │ │ └── test_M3-M4.bat │ └── msc_rw │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_msc_rw.slsproj │ │ ├── STK3200_EFM32ZG_msc_rw.slsproj │ │ ├── STK3300_EFM32TG_msc_rw.slsproj │ │ ├── STK3600_EFM32LG_msc_rw.slsproj │ │ ├── STK3700_EFM32GG_msc_rw.slsproj │ │ ├── STK3800_EFM32WG_msc_rw.slsproj │ │ └── STKXXX_EFM32G_msc_rw.slsproj │ │ ├── doc │ │ ├── EFM32GG_msc_rw.xml │ │ ├── EFM32G_msc_rw.xml │ │ ├── EFM32HG_msc_rw.xml │ │ ├── EFM32LG_msc_rw.xml │ │ ├── EFM32TG_msc_rw.xml │ │ ├── EFM32WG_msc_rw.xml │ │ └── EFM32ZG_msc_rw.xml │ │ ├── iar │ │ ├── EFM32GG_msc_rw.ewd │ │ ├── EFM32GG_msc_rw.ewp │ │ ├── EFM32G_msc_rw.ewd │ │ ├── EFM32G_msc_rw.ewp │ │ ├── EFM32HG_msc_rw.ewd │ │ ├── EFM32HG_msc_rw.ewp │ │ ├── EFM32LG_msc_rw.ewd │ │ ├── EFM32LG_msc_rw.ewp │ │ ├── EFM32TG_msc_rw.ewd │ │ ├── EFM32TG_msc_rw.ewp │ │ ├── EFM32WG_msc_rw.ewd │ │ ├── EFM32WG_msc_rw.ewp │ │ ├── EFM32ZG_msc_rw.ewd │ │ ├── EFM32ZG_msc_rw.ewp │ │ └── msc_rw.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── opamp │ ├── opamp_cascaded_inverting │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_cascaded_inverting.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_cascaded_inverting.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_cascaded_inverting.slsproj │ │ │ └── STK3800_EFM32WG_opamp_cascaded_inverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_cascaded_inverting.xml │ │ │ ├── EFM32LG_opamp_cascaded_inverting.xml │ │ │ ├── EFM32TG_opamp_cascaded_inverting.xml │ │ │ └── EFM32WG_opamp_cascaded_inverting.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32GG_opamp_cascaded_inverting.ewp │ │ │ ├── EFM32LG_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32LG_opamp_cascaded_inverting.ewp │ │ │ ├── EFM32TG_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32TG_opamp_cascaded_inverting.ewp │ │ │ ├── EFM32WG_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32WG_opamp_cascaded_inverting.ewp │ │ │ └── opamp_cascaded_inverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_cascaded_noninverting │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_cascaded_noninverting.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_cascaded_noninverting.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_cascaded_noninverting.slsproj │ │ │ └── STK3800_EFM32WG_opamp_cascaded_noninverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_cascaded_noninverting.xml │ │ │ ├── EFM32LG_opamp_cascaded_noninverting.xml │ │ │ ├── EFM32TG_opamp_cascaded_noninverting.xml │ │ │ └── EFM32WG_opamp_cascaded_noninverting.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32GG_opamp_cascaded_noninverting.ewp │ │ │ ├── EFM32LG_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32LG_opamp_cascaded_noninverting.ewp │ │ │ ├── EFM32TG_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32TG_opamp_cascaded_noninverting.ewp │ │ │ ├── EFM32WG_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32WG_opamp_cascaded_noninverting.ewp │ │ │ └── opamp_cascaded_noninverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_dac_to_opamp │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_dac_to_opamp.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_dac_to_opamp.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_dac_to_opamp.slsproj │ │ │ └── STK3800_EFM32WG_opamp_dac_to_opamp.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_dac_to_opamp.xml │ │ │ ├── EFM32LG_opamp_dac_to_opamp.xml │ │ │ ├── EFM32TG_opamp_dac_to_opamp.xml │ │ │ └── EFM32WG_opamp_dac_to_opamp.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32GG_opamp_dac_to_opamp.ewp │ │ │ ├── EFM32LG_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32LG_opamp_dac_to_opamp.ewp │ │ │ ├── EFM32TG_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32TG_opamp_dac_to_opamp.ewp │ │ │ ├── EFM32WG_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32WG_opamp_dac_to_opamp.ewp │ │ │ └── opamp_dac_to_opamp.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_differential_three │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_differential_three.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_differential_three.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_differential_three.slsproj │ │ │ └── STK3800_EFM32WG_opamp_differential_three.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_differential_three.xml │ │ │ ├── EFM32LG_opamp_differential_three.xml │ │ │ ├── EFM32TG_opamp_differential_three.xml │ │ │ └── EFM32WG_opamp_differential_three.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_differential_three.ewd │ │ │ ├── EFM32GG_opamp_differential_three.ewp │ │ │ ├── EFM32LG_opamp_differential_three.ewd │ │ │ ├── EFM32LG_opamp_differential_three.ewp │ │ │ ├── EFM32TG_opamp_differential_three.ewd │ │ │ ├── EFM32TG_opamp_differential_three.ewp │ │ │ ├── EFM32WG_opamp_differential_three.ewd │ │ │ ├── EFM32WG_opamp_differential_three.ewp │ │ │ └── opamp_differential_three.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_differential_two │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_differential_two.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_differential_two.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_differential_two.slsproj │ │ │ └── STK3800_EFM32WG_opamp_differential_two.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_differential_two.xml │ │ │ ├── EFM32LG_opamp_differential_two.xml │ │ │ ├── EFM32TG_opamp_differential_two.xml │ │ │ └── EFM32WG_opamp_differential_two.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_differential_two.ewd │ │ │ ├── EFM32GG_opamp_differential_two.ewp │ │ │ ├── EFM32LG_opamp_differential_two.ewd │ │ │ ├── EFM32LG_opamp_differential_two.ewp │ │ │ ├── EFM32TG_opamp_differential_two.ewd │ │ │ ├── EFM32TG_opamp_differential_two.ewp │ │ │ ├── EFM32WG_opamp_differential_two.ewd │ │ │ ├── EFM32WG_opamp_differential_two.ewp │ │ │ └── opamp_differential_two.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_inverting │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_inverting.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_inverting.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_inverting.slsproj │ │ │ └── STK3800_EFM32WG_opamp_inverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_inverting.xml │ │ │ ├── EFM32LG_opamp_inverting.xml │ │ │ ├── EFM32TG_opamp_inverting.xml │ │ │ └── EFM32WG_opamp_inverting.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_inverting.ewd │ │ │ ├── EFM32GG_opamp_inverting.ewp │ │ │ ├── EFM32LG_opamp_inverting.ewd │ │ │ ├── EFM32LG_opamp_inverting.ewp │ │ │ ├── EFM32TG_opamp_inverting.ewd │ │ │ ├── EFM32TG_opamp_inverting.ewp │ │ │ ├── EFM32WG_opamp_inverting.ewd │ │ │ ├── EFM32WG_opamp_inverting.ewp │ │ │ └── opamp_inverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_noninverting │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_noninverting.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_noninverting.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_noninverting.slsproj │ │ │ └── STK3800_EFM32WG_opamp_noninverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_noninverting.xml │ │ │ ├── EFM32LG_opamp_noninverting.xml │ │ │ ├── EFM32TG_opamp_noninverting.xml │ │ │ └── EFM32WG_opamp_noninverting.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_noninverting.ewd │ │ │ ├── EFM32GG_opamp_noninverting.ewp │ │ │ ├── EFM32LG_opamp_noninverting.ewd │ │ │ ├── EFM32LG_opamp_noninverting.ewp │ │ │ ├── EFM32TG_opamp_noninverting.ewd │ │ │ ├── EFM32TG_opamp_noninverting.ewp │ │ │ ├── EFM32WG_opamp_noninverting.ewd │ │ │ ├── EFM32WG_opamp_noninverting.ewp │ │ │ └── opamp_noninverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── opamp_to_adc │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_opamp_to_adc.slsproj │ │ │ ├── STK3600_EFM32LG_opamp_to_adc.slsproj │ │ │ ├── STK3700_EFM32GG_opamp_to_adc.slsproj │ │ │ └── STK3800_EFM32WG_opamp_to_adc.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_opamp_to_adc.xml │ │ │ ├── EFM32LG_opamp_to_adc.xml │ │ │ ├── EFM32TG_opamp_to_adc.xml │ │ │ └── EFM32WG_opamp_to_adc.xml │ │ ├── iar │ │ │ ├── EFM32GG_opamp_to_adc.ewd │ │ │ ├── EFM32GG_opamp_to_adc.ewp │ │ │ ├── EFM32LG_opamp_to_adc.ewd │ │ │ ├── EFM32LG_opamp_to_adc.ewp │ │ │ ├── EFM32TG_opamp_to_adc.ewd │ │ │ ├── EFM32TG_opamp_to_adc.ewp │ │ │ ├── EFM32WG_opamp_to_adc.ewd │ │ │ ├── EFM32WG_opamp_to_adc.ewp │ │ │ └── opamp_to_adc.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ └── opamp_unity_gain │ │ ├── SimplicityStudio │ │ ├── STK3300_EFM32TG_opamp_unity_gain.slsproj │ │ ├── STK3600_EFM32LG_opamp_unity_gain.slsproj │ │ ├── STK3700_EFM32GG_opamp_unity_gain.slsproj │ │ └── STK3800_EFM32WG_opamp_unity_gain.slsproj │ │ ├── doc │ │ ├── EFM32GG_opamp_unity_gain.xml │ │ ├── EFM32LG_opamp_unity_gain.xml │ │ ├── EFM32TG_opamp_unity_gain.xml │ │ └── EFM32WG_opamp_unity_gain.xml │ │ ├── iar │ │ ├── EFM32GG_opamp_unity_gain.ewd │ │ ├── EFM32GG_opamp_unity_gain.ewp │ │ ├── EFM32LG_opamp_unity_gain.ewd │ │ ├── EFM32LG_opamp_unity_gain.ewp │ │ ├── EFM32TG_opamp_unity_gain.ewd │ │ ├── EFM32TG_opamp_unity_gain.ewp │ │ ├── EFM32WG_opamp_unity_gain.ewd │ │ ├── EFM32WG_opamp_unity_gain.ewp │ │ └── opamp_unity_gain.eww │ │ ├── readme.txt │ │ └── src │ │ └── main_s0.c ├── pcnt │ ├── pcnt_extclk_qudarature │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_pcnt_extclk_quadrature.slsproj │ │ │ ├── STK3200_EFM32ZG_pcnt_extclk_quadrature.slsproj │ │ │ ├── STK3300_EFM32TG_pcnt_extclk_quadrature.slsproj │ │ │ ├── STK3600_EFM32LG_pcnt_extclk_quadrature.slsproj │ │ │ ├── STK3700_EFM32GG_pcnt_extclk_quadrature.slsproj │ │ │ ├── STK3800_EFM32WG_pcnt_extclk_quadrature.slsproj │ │ │ └── STKXXX_EFM32G_pcnt_extclk_quadrature.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32G_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32HG_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32LG_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32TG_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32WG_pcnt_extclk_quadrature.xml │ │ │ └── EFM32ZG_pcnt_extclk_quadrature.xml │ │ ├── iar │ │ │ ├── EFM32GG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32GG_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32G_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32G_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32HG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32HG_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32LG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32LG_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32TG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32TG_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32WG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32WG_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32ZG_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32ZG_pcnt_extclk_quadrature.ewp │ │ │ └── pcnt_extclk_quadrature.eww │ │ ├── readme.txt │ │ ├── readme_g.txt │ │ ├── readme_tg.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_gg_hg_wg_lg.c │ │ │ ├── main_tg.c │ │ │ └── main_zg.c │ ├── pcnt_extclk_single_overflow │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_pcnt_extclk_single_overflow.slsproj │ │ │ ├── STK3200_EFM32ZG_pcnt_extclk_single_overflow.slsproj │ │ │ ├── STK3300_EFM32TG_pcnt_extclk_single_overflow.slsproj │ │ │ ├── STK3600_EFM32LG_pcnt_extclk_single_overflow.slsproj │ │ │ ├── STK3700_EFM32GG_pcnt_extclk_single_overflow.slsproj │ │ │ ├── STK3800_EFM32WG_pcnt_extclk_single_overflow.slsproj │ │ │ └── STKXXX_EFM32G_pcnt_extclk_single_overflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32G_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32HG_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32LG_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32TG_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32WG_pcnt_extclk_single_overflow.xml │ │ │ └── EFM32ZG_pcnt_extclk_single_overflow.xml │ │ ├── iar │ │ │ ├── EFM32GG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32GG_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32G_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32G_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32HG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32HG_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32LG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32LG_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32TG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32TG_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32WG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32WG_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32ZG_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32ZG_pcnt_extclk_single_overflow.ewp │ │ │ └── pcnt_extclk_single_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_gg_hg_wg_lg.c │ │ │ └── main_zg_tg.c │ ├── pcnt_extclk_single_underflow │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_pcnt_extclk_single_underflow.slsproj │ │ │ ├── STK3200_EFM32ZG_pcnt_extclk_single_underflow.slsproj │ │ │ ├── STK3300_EFM32TG_pcnt_extclk_single_underflow.slsproj │ │ │ ├── STK3600_EFM32LG_pcnt_extclk_single_underflow.slsproj │ │ │ ├── STK3700_EFM32GG_pcnt_extclk_single_underflow.slsproj │ │ │ ├── STK3800_EFM32WG_pcnt_extclk_single_underflow.slsproj │ │ │ └── STKXXX_EFM32G_pcnt_extclk_single_underflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32G_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32HG_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32LG_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32TG_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32WG_pcnt_extclk_single_underflow.xml │ │ │ └── EFM32ZG_pcnt_extclk_single_underflow.xml │ │ ├── iar │ │ │ ├── EFM32GG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32GG_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32G_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32G_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32HG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32HG_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32LG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32LG_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32TG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32TG_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32WG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32WG_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32ZG_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32ZG_pcnt_extclk_single_underflow.ewp │ │ │ └── pcnt_extclk_single_underflow.eww │ │ ├── readme.txt │ │ ├── readme_g.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_gg_hg_wg_lg.c │ │ │ └── main_zg_tg.c │ ├── pcnt_single_oversampling_overflow │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── STK3200_EFM32ZG_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── STK3300_EFM32TG_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── STK3600_EFM32LG_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── STK3700_EFM32GG_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── STK3800_EFM32WG_pcnt_single_oversampling_overflow.slsproj │ │ │ └── STKXXX_EFM32G_pcnt_single_oversampling_overflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32G_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32HG_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32LG_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32TG_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32WG_pcnt_single_oversampling_overflow.xml │ │ │ └── EFM32ZG_pcnt_single_oversampling_overflow.xml │ │ ├── iar │ │ │ ├── EFM32GG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32GG_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32G_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32G_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32HG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32HG_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32LG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32LG_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32TG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32TG_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32WG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32WG_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32ZG_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32ZG_pcnt_single_oversampling_overflow.ewp │ │ │ └── pcnt_single_oversampling_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_gg_hg_wg_lg.c │ │ │ └── main_zg_tg.c │ └── pcnt_single_oversampling_underflow │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_pcnt_single_oversampling_underflow.slsproj │ │ ├── STK3200_EFM32ZG_pcnt_single_oversampling_underflow.slsproj │ │ ├── STK3300_EFM32TG_pcnt_single_oversampling_underflow.slsproj │ │ ├── STK3600_EFM32LG_pcnt_single_oversampling_underflow.slsproj │ │ ├── STK3700_EFM32GG_pcnt_single_oversampling_underflow.slsproj │ │ ├── STK3800_EFM32WG_pcnt_single_oversampling_underflow.slsproj │ │ └── STKXXX_EFM32G_pcnt_single_oversampling_underflow.slsproj │ │ ├── doc │ │ ├── EFM32GG_pcnt_single_oversampling_underflow.xml │ │ ├── EFM32G_pcnt_single_oversampling_underflow.xml │ │ ├── EFM32HG_pcnt_single_oversampling_underflow.xml │ │ ├── EFM32LG_pcnt_single_oversampling_underflow.xml │ │ ├── EFM32TG_pcnt_single_oversampling_underflow.xml │ │ ├── EFM32WG_pcnt_single_oversampling_underflow.xml │ │ └── EFM32ZG_pcnt_single_oversampling_underflow.xml │ │ ├── iar │ │ ├── EFM32GG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32GG_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32G_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32G_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32HG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32HG_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32LG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32LG_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32TG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32TG_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32WG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32WG_pcnt_single_oversampling_underflow.ewp │ │ ├── EFM32ZG_pcnt_single_oversampling_underflow.ewd │ │ ├── EFM32ZG_pcnt_single_oversampling_underflow.ewp │ │ └── pcnt_single_oversampling_underflow.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_g.c │ │ ├── main_gg_hg_wg_lg.c │ │ └── main_zg_tg.c ├── rmu │ └── rmu_get_reset_cause │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_rmu_get_reset_cause.slsproj │ │ ├── STK3200_EFM32ZG_rmu_get_reset_cause.slsproj │ │ ├── STK3300_EFM32TG_rmu_get_reset_cause.slsproj │ │ ├── STK3600_EFM32LG_rmu_get_reset_cause.slsproj │ │ ├── STK3700_EFM32GG_rmu_get_reset_cause.slsproj │ │ ├── STK3800_EFM32WG_rmu_get_reset_cause.slsproj │ │ └── STKXXX_EFM32G_rmu_get_reset_cause.slsproj │ │ ├── doc │ │ ├── EFM32GG_rmu_get_reset_cause.xml │ │ ├── EFM32G_rmu_get_reset_cause.xml │ │ ├── EFM32HG_rmu_get_reset_cause.xml │ │ ├── EFM32LG_rmu_get_reset_cause.xml │ │ ├── EFM32TG_rmu_get_reset_cause.xml │ │ ├── EFM32WG_rmu_get_reset_cause.xml │ │ └── EFM32ZG_rmu_get_reset_cause.xml │ │ ├── iar │ │ ├── EFM32GG_rmu_get_reset_cause.ewd │ │ ├── EFM32GG_rmu_get_reset_cause.ewp │ │ ├── EFM32G_rmu_get_reset_cause.ewd │ │ ├── EFM32G_rmu_get_reset_cause.ewp │ │ ├── EFM32HG_rmu_get_reset_cause.ewd │ │ ├── EFM32HG_rmu_get_reset_cause.ewp │ │ ├── EFM32LG_rmu_get_reset_cause.ewd │ │ ├── EFM32LG_rmu_get_reset_cause.ewp │ │ ├── EFM32TG_rmu_get_reset_cause.ewd │ │ ├── EFM32TG_rmu_get_reset_cause.ewp │ │ ├── EFM32WG_rmu_get_reset_cause.ewd │ │ ├── EFM32WG_rmu_get_reset_cause.ewp │ │ ├── EFM32ZG_rmu_get_reset_cause.ewd │ │ ├── EFM32ZG_rmu_get_reset_cause.ewp │ │ └── rmu_get_reset_cause.eww │ │ ├── readme_burtc.txt │ │ ├── readme_g8xx.txt │ │ ├── readme_gpio.txt │ │ ├── readme_gpiotg.txt │ │ └── src │ │ ├── main_burtc.c │ │ ├── main_g8xx.c │ │ ├── main_gpio.c │ │ └── main_gpiotg.c ├── rtc │ ├── rtc_lfxo │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_rtc_lfxo.slsproj │ │ │ ├── STK3200_EFM32ZG_rtc_lfxo.slsproj │ │ │ ├── STK3300_EFM32TG_rtc_lfxo.slsproj │ │ │ ├── STK3600_EFM32LG_rtc_lfxo.slsproj │ │ │ ├── STK3700_EFM32GG_rtc_lfxo.slsproj │ │ │ ├── STK3800_EFM32WG_rtc_lfxo.slsproj │ │ │ └── STKXXX_EFM32G_rtc_lfxo.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_rtc_lfxo.xml │ │ │ ├── EFM32G_rtc_lfxo.xml │ │ │ ├── EFM32HG_rtc_lfxo.xml │ │ │ ├── EFM32LG_rtc_lfxo.xml │ │ │ ├── EFM32TG_rtc_lfxo.xml │ │ │ ├── EFM32WG_rtc_lfxo.xml │ │ │ └── EFM32ZG_rtc_lfxo.xml │ │ ├── iar │ │ │ ├── EFM32GG_rtc_lfxo.ewd │ │ │ ├── EFM32GG_rtc_lfxo.ewp │ │ │ ├── EFM32G_rtc_lfxo.ewd │ │ │ ├── EFM32G_rtc_lfxo.ewp │ │ │ ├── EFM32HG_rtc_lfxo.ewd │ │ │ ├── EFM32HG_rtc_lfxo.ewp │ │ │ ├── EFM32LG_rtc_lfxo.ewd │ │ │ ├── EFM32LG_rtc_lfxo.ewp │ │ │ ├── EFM32TG_rtc_lfxo.ewd │ │ │ ├── EFM32TG_rtc_lfxo.ewp │ │ │ ├── EFM32WG_rtc_lfxo.ewd │ │ │ ├── EFM32WG_rtc_lfxo.ewp │ │ │ ├── EFM32ZG_rtc_lfxo.ewd │ │ │ ├── EFM32ZG_rtc_lfxo.ewp │ │ │ └── rtc_lfxo.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── rtc_ulfrco │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_rtc_ulfrco.slsproj │ │ ├── STK3200_EFM32ZG_rtc_ulfrco.slsproj │ │ ├── STK3300_EFM32TG_rtc_ulfrco.slsproj │ │ ├── STK3600_EFM32LG_rtc_ulfrco.slsproj │ │ ├── STK3700_EFM32GG_rtc_ulfrco.slsproj │ │ └── STK3800_EFM32WG_rtc_ulfrco.slsproj │ │ ├── doc │ │ ├── EFM32GG_rtc_ulfrco.xml │ │ ├── EFM32HG_rtc_ulfrco.xml │ │ ├── EFM32LG_rtc_ulfrco.xml │ │ ├── EFM32TG_rtc_ulfrco.xml │ │ ├── EFM32WG_rtc_ulfrco.xml │ │ └── EFM32ZG_rtc_ulfrco.xml │ │ ├── iar │ │ ├── EFM32GG_rtc_ulfrco.ewd │ │ ├── EFM32GG_rtc_ulfrco.ewp │ │ ├── EFM32HG_rtc_ulfrco.ewd │ │ ├── EFM32HG_rtc_ulfrco.ewp │ │ ├── EFM32LG_rtc_ulfrco.ewd │ │ ├── EFM32LG_rtc_ulfrco.ewp │ │ ├── EFM32TG_rtc_ulfrco.ewd │ │ ├── EFM32TG_rtc_ulfrco.ewp │ │ ├── EFM32WG_rtc_ulfrco.ewd │ │ ├── EFM32WG_rtc_ulfrco.ewp │ │ ├── EFM32ZG_rtc_ulfrco.ewd │ │ ├── EFM32ZG_rtc_ulfrco.ewp │ │ └── rtc_ulfrco.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── servo │ ├── adjust │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_servo_adjust.slsproj │ │ │ ├── STK3200_EFM32ZG_servo_adjust.slsproj │ │ │ ├── STK3300_EFM32TG_servo_adjust.slsproj │ │ │ ├── STK3600_EFM32LG_servo_adjust.slsproj │ │ │ ├── STK3700_EFM32GG_servo_adjust.slsproj │ │ │ ├── STK3800_EFM32WG_servo_adjust.slsproj │ │ │ └── STKXXX_EFM32G_servo_adjust.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_servo_adjust.xml │ │ │ ├── EFM32G_servo_adjust.xml │ │ │ ├── EFM32HG_servo_adjust.xml │ │ │ ├── EFM32LG_servo_adjust.xml │ │ │ ├── EFM32TG_servo_adjust.xml │ │ │ ├── EFM32WG_servo_adjust.xml │ │ │ └── EFM32ZG_servo_adjust.xml │ │ ├── iar │ │ │ ├── EFM32GG_servo_adjust.ewd │ │ │ ├── EFM32GG_servo_adjust.ewp │ │ │ ├── EFM32G_servo_adjust.ewd │ │ │ ├── EFM32G_servo_adjust.ewp │ │ │ ├── EFM32HG_servo_adjust.ewd │ │ │ ├── EFM32HG_servo_adjust.ewp │ │ │ ├── EFM32LG_servo_adjust.ewd │ │ │ ├── EFM32LG_servo_adjust.ewp │ │ │ ├── EFM32TG_servo_adjust.ewd │ │ │ ├── EFM32TG_servo_adjust.ewp │ │ │ ├── EFM32WG_servo_adjust.ewd │ │ │ ├── EFM32WG_servo_adjust.ewp │ │ │ ├── EFM32ZG_servo_adjust.ewd │ │ │ ├── EFM32ZG_servo_adjust.ewp │ │ │ └── pwm_servo_adjust.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_series0.c │ └── sweep │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_servo_sweep.slsproj │ │ ├── STK3200_EFM32ZG_servo_sweep.slsproj │ │ ├── STK3300_EFM32TG_servo_sweep.slsproj │ │ ├── STK3600_EFM32LG_servo_sweep.slsproj │ │ ├── STK3700_EFM32GG_servo_sweep.slsproj │ │ ├── STK3800_EFM32WG_servo_sweep.slsproj │ │ └── STKXXX_EFM32G_servo_sweep.slsproj │ │ ├── doc │ │ ├── EFM32GG_servo_sweep.xml │ │ ├── EFM32G_servo_sweep.xml │ │ ├── EFM32HG_servo_sweep.xml │ │ ├── EFM32LG_servo_sweep.xml │ │ ├── EFM32TG_servo_sweep.xml │ │ ├── EFM32WG_servo_sweep.xml │ │ └── EFM32ZG_servo_sweep.xml │ │ ├── iar │ │ ├── EFM32GG_servo_sweep.ewd │ │ ├── EFM32GG_servo_sweep.ewp │ │ ├── EFM32G_servo_sweep.ewd │ │ ├── EFM32G_servo_sweep.ewp │ │ ├── EFM32HG_servo_sweep.ewd │ │ ├── EFM32HG_servo_sweep.ewp │ │ ├── EFM32LG_servo_sweep.ewd │ │ ├── EFM32LG_servo_sweep.ewp │ │ ├── EFM32TG_servo_sweep.ewd │ │ ├── EFM32TG_servo_sweep.ewp │ │ ├── EFM32WG_servo_sweep.ewd │ │ ├── EFM32WG_servo_sweep.ewp │ │ ├── EFM32ZG_servo_sweep.ewd │ │ ├── EFM32ZG_servo_sweep.ewp │ │ └── pwm_servo_sweep.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_g.c │ │ └── main_series0.c ├── timer │ ├── timer_dma_edge_capture │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_dma_edge_capture.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_dma_edge_capture.slsproj │ │ │ ├── STK3300_EFM32TG_timer_dma_edge_capture.slsproj │ │ │ ├── STK3600_EFM32LG_timer_dma_edge_capture.slsproj │ │ │ ├── STK3700_EFM32GG_timer_dma_edge_capture.slsproj │ │ │ ├── STK3800_EFM32WG_timer_dma_edge_capture.slsproj │ │ │ └── STKXXX_EFM32G_timer_dma_edge_capture.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_dma_edge_capture.xml │ │ │ ├── EFM32G_timer_dma_edge_capture.xml │ │ │ ├── EFM32HG_timer_dma_edge_capture.xml │ │ │ ├── EFM32LG_timer_dma_edge_capture.xml │ │ │ ├── EFM32TG_timer_dma_edge_capture.xml │ │ │ ├── EFM32WG_timer_dma_edge_capture.xml │ │ │ └── EFM32ZG_timer_dma_edge_capture.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32GG_timer_dma_edge_capture.ewp │ │ │ ├── EFM32G_timer_dma_edge_capture.ewd │ │ │ ├── EFM32G_timer_dma_edge_capture.ewp │ │ │ ├── EFM32HG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32HG_timer_dma_edge_capture.ewp │ │ │ ├── EFM32LG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32LG_timer_dma_edge_capture.ewp │ │ │ ├── EFM32TG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32TG_timer_dma_edge_capture.ewp │ │ │ ├── EFM32WG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32WG_timer_dma_edge_capture.ewp │ │ │ ├── EFM32ZG_timer_dma_edge_capture.ewd │ │ │ ├── EFM32ZG_timer_dma_edge_capture.ewp │ │ │ └── timer_dma_edge_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_frequency_generation │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_frequency_generation.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_frequency_generation.slsproj │ │ │ ├── STK3300_EFM32TG_timer_frequency_generation.slsproj │ │ │ ├── STK3600_EFM32LG_timer_frequency_generation.slsproj │ │ │ ├── STK3700_EFM32GG_timer_frequency_generation.slsproj │ │ │ ├── STK3800_EFM32WG_timer_frequency_generation.slsproj │ │ │ └── STKXXX_EFM32G_timer_frequency_generation.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_frequency_generation.xml │ │ │ ├── EFM32G_timer_frequency_generation.xml │ │ │ ├── EFM32HG_timer_frequency_generation.xml │ │ │ ├── EFM32LG_timer_frequency_generation.xml │ │ │ ├── EFM32TG_timer_frequency_generation.xml │ │ │ ├── EFM32WG_timer_frequency_generation.xml │ │ │ └── EFM32ZG_timer_frequency_generation.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_frequency_generation.ewd │ │ │ ├── EFM32GG_timer_frequency_generation.ewp │ │ │ ├── EFM32G_timer_frequency_generation.ewd │ │ │ ├── EFM32G_timer_frequency_generation.ewp │ │ │ ├── EFM32HG_timer_frequency_generation.ewd │ │ │ ├── EFM32HG_timer_frequency_generation.ewp │ │ │ ├── EFM32LG_timer_frequency_generation.ewd │ │ │ ├── EFM32LG_timer_frequency_generation.ewp │ │ │ ├── EFM32TG_timer_frequency_generation.ewd │ │ │ ├── EFM32TG_timer_frequency_generation.ewp │ │ │ ├── EFM32WG_timer_frequency_generation.ewd │ │ │ ├── EFM32WG_timer_frequency_generation.ewp │ │ │ ├── EFM32ZG_timer_frequency_generation.ewd │ │ │ ├── EFM32ZG_timer_frequency_generation.ewp │ │ │ └── timer_frequency_generation.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_input_capture_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_input_capture_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_input_capture_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_timer_input_capture_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_timer_input_capture_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_timer_input_capture_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_timer_input_capture_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_timer_input_capture_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_input_capture_interrupt.xml │ │ │ ├── EFM32G_timer_input_capture_interrupt.xml │ │ │ ├── EFM32HG_timer_input_capture_interrupt.xml │ │ │ ├── EFM32LG_timer_input_capture_interrupt.xml │ │ │ ├── EFM32TG_timer_input_capture_interrupt.xml │ │ │ ├── EFM32WG_timer_input_capture_interrupt.xml │ │ │ └── EFM32ZG_timer_input_capture_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32GG_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32G_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32G_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32HG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32HG_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32LG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32LG_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32TG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32TG_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32WG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32WG_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32ZG_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32ZG_timer_input_capture_interrupt.ewp │ │ │ └── timer_input_capture_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── timer_input_capture_polled │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_input_capture_polled.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_input_capture_polled.slsproj │ │ │ ├── STK3300_EFM32TG_timer_input_capture_polled.slsproj │ │ │ ├── STK3600_EFM32LG_timer_input_capture_polled.slsproj │ │ │ ├── STK3700_EFM32GG_timer_input_capture_polled.slsproj │ │ │ ├── STK3800_EFM32WG_timer_input_capture_polled.slsproj │ │ │ └── STKXXX_EFM32G_timer_input_capture_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_input_capture_polled.xml │ │ │ ├── EFM32G_timer_input_capture_polled.xml │ │ │ ├── EFM32HG_timer_input_capture_polled.xml │ │ │ ├── EFM32LG_timer_input_capture_polled.xml │ │ │ ├── EFM32TG_timer_input_capture_polled.xml │ │ │ ├── EFM32WG_timer_input_capture_polled.xml │ │ │ └── EFM32ZG_timer_input_capture_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_input_capture_polled.ewd │ │ │ ├── EFM32GG_timer_input_capture_polled.ewp │ │ │ ├── EFM32G_timer_input_capture_polled.ewd │ │ │ ├── EFM32G_timer_input_capture_polled.ewp │ │ │ ├── EFM32HG_timer_input_capture_polled.ewd │ │ │ ├── EFM32HG_timer_input_capture_polled.ewp │ │ │ ├── EFM32LG_timer_input_capture_polled.ewd │ │ │ ├── EFM32LG_timer_input_capture_polled.ewp │ │ │ ├── EFM32TG_timer_input_capture_polled.ewd │ │ │ ├── EFM32TG_timer_input_capture_polled.ewp │ │ │ ├── EFM32WG_timer_input_capture_polled.ewd │ │ │ ├── EFM32WG_timer_input_capture_polled.ewp │ │ │ ├── EFM32ZG_timer_input_capture_polled.ewd │ │ │ ├── EFM32ZG_timer_input_capture_polled.ewp │ │ │ └── timer_input_capture_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── timer_period_measurement_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_period_measurement_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_period_measurement_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_timer_period_measurement_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_timer_period_measurement_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_timer_period_measurement_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_timer_period_measurement_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_timer_period_measurement_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32G_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32HG_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32LG_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32TG_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32WG_timer_period_measurement_interrupt.xml │ │ │ └── EFM32ZG_timer_period_measurement_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32GG_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32G_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32G_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32HG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32HG_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32LG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32LG_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32TG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32TG_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32WG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32WG_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32ZG_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32ZG_timer_period_measurement_interrupt.ewp │ │ │ └── timer_period_measurement_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_period_measurement_polled │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_period_measurement_polled.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_period_measurement_polled.slsproj │ │ │ ├── STK3300_EFM32TG_timer_period_measurement_polled.slsproj │ │ │ ├── STK3600_EFM32LG_timer_period_measurement_polled.slsproj │ │ │ ├── STK3700_EFM32GG_timer_period_measurement_polled.slsproj │ │ │ ├── STK3800_EFM32WG_timer_period_measurement_polled.slsproj │ │ │ └── STKXXX_EFM32G_timer_period_measurement_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_period_measurement_polled.xml │ │ │ ├── EFM32G_timer_period_measurement_polled.xml │ │ │ ├── EFM32HG_timer_period_measurement_polled.xml │ │ │ ├── EFM32LG_timer_period_measurement_polled.xml │ │ │ ├── EFM32TG_timer_period_measurement_polled.xml │ │ │ ├── EFM32WG_timer_period_measurement_polled.xml │ │ │ └── EFM32ZG_timer_period_measurement_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32GG_timer_period_measurement_polled.ewp │ │ │ ├── EFM32G_timer_period_measurement_polled.ewd │ │ │ ├── EFM32G_timer_period_measurement_polled.ewp │ │ │ ├── EFM32HG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32HG_timer_period_measurement_polled.ewp │ │ │ ├── EFM32LG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32LG_timer_period_measurement_polled.ewp │ │ │ ├── EFM32TG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32TG_timer_period_measurement_polled.ewp │ │ │ ├── EFM32WG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32WG_timer_period_measurement_polled.ewp │ │ │ ├── EFM32ZG_timer_period_measurement_polled.ewd │ │ │ ├── EFM32ZG_timer_period_measurement_polled.ewp │ │ │ └── timer_period_measurement_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_pulse_capture │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_pulse_capture.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_pulse_capture.slsproj │ │ │ ├── STK3300_EFM32TG_timer_pulse_capture.slsproj │ │ │ ├── STK3600_EFM32LG_timer_pulse_capture.slsproj │ │ │ ├── STK3700_EFM32GG_timer_pulse_capture.slsproj │ │ │ ├── STK3800_EFM32WG_timer_pulse_capture.slsproj │ │ │ └── STKXXX_EFM32G_timer_pulse_capture.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_pulse_capture.xml │ │ │ ├── EFM32G_timer_pulse_capture.xml │ │ │ ├── EFM32HG_timer_pulse_capture.xml │ │ │ ├── EFM32LG_timer_pulse_capture.xml │ │ │ ├── EFM32TG_timer_pulse_capture.xml │ │ │ ├── EFM32WG_timer_pulse_capture.xml │ │ │ └── EFM32ZG_timer_pulse_capture.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_pulse_capture.ewd │ │ │ ├── EFM32GG_timer_pulse_capture.ewp │ │ │ ├── EFM32G_timer_pulse_capture.ewd │ │ │ ├── EFM32G_timer_pulse_capture.ewp │ │ │ ├── EFM32HG_timer_pulse_capture.ewd │ │ │ ├── EFM32HG_timer_pulse_capture.ewp │ │ │ ├── EFM32LG_timer_pulse_capture.ewd │ │ │ ├── EFM32LG_timer_pulse_capture.ewp │ │ │ ├── EFM32TG_timer_pulse_capture.ewd │ │ │ ├── EFM32TG_timer_pulse_capture.ewp │ │ │ ├── EFM32WG_timer_pulse_capture.ewd │ │ │ ├── EFM32WG_timer_pulse_capture.ewp │ │ │ ├── EFM32ZG_timer_pulse_capture.ewd │ │ │ ├── EFM32ZG_timer_pulse_capture.ewp │ │ │ └── timer_pulse_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_pwm_dma │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_pwm_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_pwm_dma.slsproj │ │ │ ├── STK3300_EFM32TG_timer_pwm_dma.slsproj │ │ │ ├── STK3600_EFM32LG_timer_pwm_dma.slsproj │ │ │ ├── STK3700_EFM32GG_timer_pwm_dma.slsproj │ │ │ ├── STK3800_EFM32WG_timer_pwm_dma.slsproj │ │ │ └── STKXXX_EFM32G_timer_pwm_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_pwm_dma.xml │ │ │ ├── EFM32G_timer_pwm_dma.xml │ │ │ ├── EFM32HG_timer_pwm_dma.xml │ │ │ ├── EFM32LG_timer_pwm_dma.xml │ │ │ ├── EFM32TG_timer_pwm_dma.xml │ │ │ ├── EFM32WG_timer_pwm_dma.xml │ │ │ └── EFM32ZG_timer_pwm_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_pwm_dma.ewd │ │ │ ├── EFM32GG_timer_pwm_dma.ewp │ │ │ ├── EFM32G_timer_pwm_dma.ewd │ │ │ ├── EFM32G_timer_pwm_dma.ewp │ │ │ ├── EFM32HG_timer_pwm_dma.ewd │ │ │ ├── EFM32HG_timer_pwm_dma.ewp │ │ │ ├── EFM32LG_timer_pwm_dma.ewd │ │ │ ├── EFM32LG_timer_pwm_dma.ewp │ │ │ ├── EFM32TG_timer_pwm_dma.ewd │ │ │ ├── EFM32TG_timer_pwm_dma.ewp │ │ │ ├── EFM32WG_timer_pwm_dma.ewd │ │ │ ├── EFM32WG_timer_pwm_dma.ewp │ │ │ ├── EFM32ZG_timer_pwm_dma.ewd │ │ │ ├── EFM32ZG_timer_pwm_dma.ewp │ │ │ └── timer_pwm_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_hg_zg_tg.c │ │ │ └── main_s0.c │ ├── timer_pwm_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_pwm_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_pwm_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_timer_pwm_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_timer_pwm_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_timer_pwm_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_timer_pwm_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_timer_pwm_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_pwm_interrupt.xml │ │ │ ├── EFM32G_timer_pwm_interrupt.xml │ │ │ ├── EFM32HG_timer_pwm_interrupt.xml │ │ │ ├── EFM32LG_timer_pwm_interrupt.xml │ │ │ ├── EFM32TG_timer_pwm_interrupt.xml │ │ │ ├── EFM32WG_timer_pwm_interrupt.xml │ │ │ └── EFM32ZG_timer_pwm_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32GG_timer_pwm_interrupt.ewp │ │ │ ├── EFM32G_timer_pwm_interrupt.ewd │ │ │ ├── EFM32G_timer_pwm_interrupt.ewp │ │ │ ├── EFM32HG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32HG_timer_pwm_interrupt.ewp │ │ │ ├── EFM32LG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32LG_timer_pwm_interrupt.ewp │ │ │ ├── EFM32TG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32TG_timer_pwm_interrupt.ewp │ │ │ ├── EFM32WG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32WG_timer_pwm_interrupt.ewp │ │ │ ├── EFM32ZG_timer_pwm_interrupt.ewd │ │ │ ├── EFM32ZG_timer_pwm_interrupt.ewp │ │ │ └── timer_pwm_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_single_edge_output_compare │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_single_edge_output_compare.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_single_edge_output_compare.slsproj │ │ │ ├── STK3300_EFM32TG_timer_single_edge_output_compare.slsproj │ │ │ ├── STK3600_EFM32LG_timer_single_edge_output_compare.slsproj │ │ │ ├── STK3700_EFM32GG_timer_single_edge_output_compare.slsproj │ │ │ ├── STK3800_EFM32WG_timer_single_edge_output_compare.slsproj │ │ │ └── STKXXX_EFM32G_timer_single_edge_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_single_edge_output_compare.xml │ │ │ ├── EFM32G_timer_single_edge_output_compare.xml │ │ │ ├── EFM32HG_timer_single_edge_output_compare.xml │ │ │ ├── EFM32LG_timer_single_edge_output_compare.xml │ │ │ ├── EFM32TG_timer_single_edge_output_compare.xml │ │ │ ├── EFM32WG_timer_single_edge_output_compare.xml │ │ │ └── EFM32ZG_timer_single_edge_output_compare.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32GG_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32G_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32G_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32HG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32HG_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32LG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32LG_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32TG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32TG_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32WG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32WG_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32ZG_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32ZG_timer_single_edge_output_compare.ewp │ │ │ └── timer_single_edge_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_single_pulse_generation_dma │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_single_pulse_generation_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_single_pulse_generation_dma.slsproj │ │ │ ├── STK3300_EFM32TG_timer_single_pulse_generation_dma.slsproj │ │ │ ├── STK3600_EFM32LG_timer_single_pulse_generation_dma.slsproj │ │ │ ├── STK3700_EFM32GG_timer_single_pulse_generation_dma.slsproj │ │ │ ├── STK3800_EFM32WG_timer_single_pulse_generation_dma.slsproj │ │ │ └── STKXXX_EFM32G_timer_single_pulse_generation_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32G_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32HG_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32LG_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32TG_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32WG_timer_single_pulse_generation_dma.xml │ │ │ └── EFM32ZG_timer_single_pulse_generation_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32GG_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32G_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32G_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32HG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32HG_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32LG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32LG_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32TG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32TG_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32WG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32WG_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32ZG_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32ZG_timer_single_pulse_generation_dma.ewp │ │ │ └── timer_single_pulse_generation_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── timer_single_pulse_generation_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_timer_single_pulse_generation_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_timer_single_pulse_generation_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32G_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32HG_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32LG_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32TG_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32WG_timer_single_pulse_generation_interrupt.xml │ │ │ └── EFM32ZG_timer_single_pulse_generation_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32GG_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32G_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32G_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32HG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32HG_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32LG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32LG_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32TG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32TG_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32WG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32WG_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32ZG_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32ZG_timer_single_pulse_generation_interrupt.ewp │ │ │ └── timer_single_pulse_generation_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ └── timer_single_pulse_generation_polled │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_timer_single_pulse_generation_polled.slsproj │ │ ├── STK3200_EFM32ZG_timer_single_pulse_generation_polled.slsproj │ │ ├── STK3300_EFM32TG_timer_single_pulse_generation_polled.slsproj │ │ ├── STK3600_EFM32LG_timer_single_pulse_generation_polled.slsproj │ │ ├── STK3700_EFM32GG_timer_single_pulse_generation_polled.slsproj │ │ ├── STK3800_EFM32WG_timer_single_pulse_generation_polled.slsproj │ │ └── STKXXX_EFM32G_timer_single_pulse_generation_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG_timer_single_pulse_generation_polled.xml │ │ ├── EFM32G_timer_single_pulse_generation_polled.xml │ │ ├── EFM32HG_timer_single_pulse_generation_polled.xml │ │ ├── EFM32LG_timer_single_pulse_generation_polled.xml │ │ ├── EFM32TG_timer_single_pulse_generation_polled.xml │ │ ├── EFM32WG_timer_single_pulse_generation_polled.xml │ │ └── EFM32ZG_timer_single_pulse_generation_polled.xml │ │ ├── iar │ │ ├── EFM32GG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32GG_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32G_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32G_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32HG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32HG_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32LG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32LG_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32TG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32TG_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32WG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32WG_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32ZG_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32ZG_timer_single_pulse_generation_polled.ewp │ │ └── timer_single_pulse_generation_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_g.c │ │ └── main_s0.c ├── usart │ ├── async_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_async_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_async_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_async_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_async_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_async_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_async_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_async_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_async_interrupt.xml │ │ │ ├── EFM32G_async_interrupt.xml │ │ │ ├── EFM32HG_async_interrupt.xml │ │ │ ├── EFM32LG_async_interrupt.xml │ │ │ ├── EFM32TG_async_interrupt.xml │ │ │ ├── EFM32WG_async_interrupt.xml │ │ │ └── EFM32ZG_async_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_async_interrupt.ewd │ │ │ ├── EFM32GG_async_interrupt.ewp │ │ │ ├── EFM32G_async_interrupt.ewd │ │ │ ├── EFM32G_async_interrupt.ewp │ │ │ ├── EFM32HG_async_interrupt.ewd │ │ │ ├── EFM32HG_async_interrupt.ewp │ │ │ ├── EFM32LG_async_interrupt.ewd │ │ │ ├── EFM32LG_async_interrupt.ewp │ │ │ ├── EFM32WG_async_interrupt.ewd │ │ │ ├── EFM32WG_async_interrupt.ewp │ │ │ ├── EFM32ZG_async_interrupt.ewd │ │ │ ├── EFM32ZG_async_interrupt.ewp │ │ │ └── async_interrupt.eww │ │ ├── readme_s0.txt │ │ └── src │ │ │ └── main_s0.c │ ├── async_polled │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_async_polled.slsproj │ │ │ ├── STK3200_EFM32ZG_async_polled.slsproj │ │ │ ├── STK3600_EFM32LG_async_polled.slsproj │ │ │ ├── STK3700_EFM32GG_async_polled.slsproj │ │ │ ├── STK3800_EFM32WG_async_polled.slsproj │ │ │ └── STKXXX_EFM32G_async_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_async_polled.xml │ │ │ ├── EFM32G_async_polled.xml │ │ │ ├── EFM32HG_async_polled.xml │ │ │ ├── EFM32LG_async_polled.xml │ │ │ ├── EFM32WG_async_polled.xml │ │ │ └── EFM32ZG_async_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG_async_polled.ewd │ │ │ ├── EFM32GG_async_polled.ewp │ │ │ ├── EFM32G_async_polled.ewd │ │ │ ├── EFM32G_async_polled.ewp │ │ │ ├── EFM32HG_async_polled.ewd │ │ │ ├── EFM32HG_async_polled.ewp │ │ │ ├── EFM32LG_async_polled.ewd │ │ │ ├── EFM32LG_async_polled.ewp │ │ │ ├── EFM32WG_async_polled.ewd │ │ │ ├── EFM32WG_async_polled.ewp │ │ │ ├── EFM32ZG_async_polled.ewd │ │ │ ├── EFM32ZG_async_polled.ewp │ │ │ └── async_polled.eww │ │ ├── readme_s0.txt │ │ └── src │ │ │ └── main_s0.c │ ├── spi_dma_master │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_master_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_master_dma.slsproj │ │ │ ├── STK3300_EFM32TG_spi_master_dma.slsproj │ │ │ ├── STK3600_EFM32LG_spi_master_dma.slsproj │ │ │ ├── STK3700_EFM32GG_spi_master_dma.slsproj │ │ │ ├── STK3800_EFM32WG_spi_master_dma.slsproj │ │ │ └── STKXXX_EFM32G_spi_master_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_master_dma.xml │ │ │ ├── EFM32G_spi_master_dma.xml │ │ │ ├── EFM32HG_spi_master_dma.xml │ │ │ ├── EFM32LG_spi_master_dma.xml │ │ │ ├── EFM32TG_spi_master_dma.xml │ │ │ ├── EFM32WG_spi_master_dma.xml │ │ │ └── EFM32ZG_spi_master_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_master_dma.ewd │ │ │ ├── EFM32GG_spi_master_dma.ewp │ │ │ ├── EFM32G_spi_master_dma.ewd │ │ │ ├── EFM32G_spi_master_dma.ewp │ │ │ ├── EFM32HG_spi_master_dma.ewd │ │ │ ├── EFM32HG_spi_master_dma.ewp │ │ │ ├── EFM32LG_spi_master_dma.ewd │ │ │ ├── EFM32LG_spi_master_dma.ewp │ │ │ ├── EFM32TG_spi_master_dma.ewd │ │ │ ├── EFM32TG_spi_master_dma.ewp │ │ │ ├── EFM32WG_spi_master_dma.ewd │ │ │ ├── EFM32WG_spi_master_dma.ewp │ │ │ ├── EFM32ZG_spi_master_dma.ewd │ │ │ ├── EFM32ZG_spi_master_dma.ewp │ │ │ └── spi_master.eww │ │ ├── readme_g_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ │ ├── main_s0_g_gg_wg_lg.c │ │ │ ├── main_s0_hg.c │ │ │ ├── main_s0_tg.c │ │ │ └── main_s0_zg.c │ ├── spi_dma_slave │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_slave_dma.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_slave_dma.slsproj │ │ │ ├── STK3300_EFM32TG_spi_slave_dma.slsproj │ │ │ ├── STK3600_EFM32LG_spi_slave_dma.slsproj │ │ │ ├── STK3700_EFM32GG_spi_slave_dma.slsproj │ │ │ ├── STK3800_EFM32WG_spi_slave_dma.slsproj │ │ │ └── STKXXX_EFM32G_spi_slave_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_slave_dma.xml │ │ │ ├── EFM32G_spi_slave_dma.xml │ │ │ ├── EFM32HG_spi_slave_dma.xml │ │ │ ├── EFM32LG_spi_slave_dma.xml │ │ │ ├── EFM32TG_spi_slave_dma.xml │ │ │ ├── EFM32WG_spi_slave_dma.xml │ │ │ └── EFM32ZG_spi_slave_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_slave_dma.ewd │ │ │ ├── EFM32GG_spi_slave_dma.ewp │ │ │ ├── EFM32G_spi_slave_dma.ewd │ │ │ ├── EFM32G_spi_slave_dma.ewp │ │ │ ├── EFM32HG_spi_slave_dma.ewd │ │ │ ├── EFM32HG_spi_slave_dma.ewp │ │ │ ├── EFM32LG_spi_slave_dma.ewd │ │ │ ├── EFM32LG_spi_slave_dma.ewp │ │ │ ├── EFM32TG_spi_slave_dma.ewd │ │ │ ├── EFM32TG_spi_slave_dma.ewp │ │ │ ├── EFM32WG_spi_slave_dma.ewd │ │ │ ├── EFM32WG_spi_slave_dma.ewp │ │ │ ├── EFM32ZG_spi_slave_dma.ewd │ │ │ ├── EFM32ZG_spi_slave_dma.ewp │ │ │ └── spi_slave.eww │ │ ├── readme_g_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ │ ├── main_s0_g_gg_wg_lg.c │ │ │ ├── main_s0_hg.c │ │ │ ├── main_s0_tg.c │ │ │ └── main_s0_zg.c │ ├── spi_master_dma_prs_gpio │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_master_dma_prs_gpio.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_master_dma_prs_gpio.slsproj │ │ │ ├── STK3300_EFM32TG_spi_master_dma_prs_gpio.slsproj │ │ │ ├── STK3600_EFM32LG_spi_master_dma_prs_gpio.slsproj │ │ │ ├── STK3700_EFM32GG_spi_master_dma_prs_gpio.slsproj │ │ │ ├── STK3800_EFM32WG_spi_master_dma_prs_gpio.slsproj │ │ │ └── STKXXX_EFM32G_spi_master_dma_prs_gpio.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32G_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32HG_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32LG_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32TG_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32WG_spi_master_dma_prs_gpio.xml │ │ │ └── EFM32ZG_spi_master_dma_prs_gpio.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32GG_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32G_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32G_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32HG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32HG_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32LG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32LG_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32TG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32TG_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32WG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32WG_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32ZG_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32ZG_spi_master_dma_prs_gpio.ewp │ │ │ └── spi_master__dma_prs_gpio.eww │ │ ├── readme_g_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ │ ├── main_s0_g_gg_wg_lg.c │ │ │ ├── main_s0_hg.c │ │ │ ├── main_s0_tg.c │ │ │ └── main_s0_zg.c │ ├── spi_master_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_master_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_master_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_spi_master_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_spi_master_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_spi_master_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_spi_master_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_spi_master_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_master_interrupt.xml │ │ │ ├── EFM32G_spi_master_interrupt.xml │ │ │ ├── EFM32HG_spi_master_interrupt.xml │ │ │ ├── EFM32LG_spi_master_interrupt.xml │ │ │ ├── EFM32TG_spi_master_interrupt.xml │ │ │ ├── EFM32WG_spi_master_interrupt.xml │ │ │ └── EFM32ZG_spi_master_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_master_interrupt.ewd │ │ │ ├── EFM32GG_spi_master_interrupt.ewp │ │ │ ├── EFM32G_spi_master_interrupt.ewd │ │ │ ├── EFM32G_spi_master_interrupt.ewp │ │ │ ├── EFM32HG_spi_master_interrupt.ewd │ │ │ ├── EFM32HG_spi_master_interrupt.ewp │ │ │ ├── EFM32LG_spi_master_interrupt.ewd │ │ │ ├── EFM32LG_spi_master_interrupt.ewp │ │ │ ├── EFM32TG_spi_master_interrupt.ewd │ │ │ ├── EFM32TG_spi_master_interrupt.ewp │ │ │ ├── EFM32WG_spi_master_interrupt.ewd │ │ │ ├── EFM32WG_spi_master_interrupt.ewp │ │ │ ├── EFM32ZG_spi_master_interrupt.ewd │ │ │ ├── EFM32ZG_spi_master_interrupt.ewp │ │ │ └── spi_master_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0_g_gg_lg_tg_wg.c │ │ │ ├── main_s0_hg.c │ │ │ └── main_s0_zg.c │ ├── spi_master_polled │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_master_polled.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_master_polled.slsproj │ │ │ ├── STK3300_EFM32TG_spi_master_polled.slsproj │ │ │ ├── STK3600_EFM32LG_spi_master_polled.slsproj │ │ │ ├── STK3700_EFM32GG_spi_master_polled.slsproj │ │ │ ├── STK3800_EFM32WG_spi_master_polled.slsproj │ │ │ └── STKXXX_EFM32G_spi_master_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_master_polled.xml │ │ │ ├── EFM32G_spi_master_polled.xml │ │ │ ├── EFM32HG_spi_master_polled.xml │ │ │ ├── EFM32LG_spi_master_polled.xml │ │ │ ├── EFM32TG_spi_master_polled.xml │ │ │ ├── EFM32WG_spi_master_polled.xml │ │ │ └── EFM32ZG_spi_master_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_master_polled.ewd │ │ │ ├── EFM32GG_spi_master_polled.ewp │ │ │ ├── EFM32G_spi_master_polled.ewd │ │ │ ├── EFM32G_spi_master_polled.ewp │ │ │ ├── EFM32HG_spi_master_polled.ewd │ │ │ ├── EFM32HG_spi_master_polled.ewp │ │ │ ├── EFM32LG_spi_master_polled.ewd │ │ │ ├── EFM32LG_spi_master_polled.ewp │ │ │ ├── EFM32TG_spi_master_polled.ewd │ │ │ ├── EFM32TG_spi_master_polled.ewp │ │ │ ├── EFM32WG_spi_master_polled.ewd │ │ │ ├── EFM32WG_spi_master_polled.ewp │ │ │ ├── EFM32ZG_spi_master_polled.ewd │ │ │ ├── EFM32ZG_spi_master_polled.ewp │ │ │ └── spi_master.eww │ │ ├── readme_g_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ │ ├── main_s0_g_gg_wg_lg.c │ │ │ ├── main_s0_hg.c │ │ │ ├── main_s0_tg.c │ │ │ └── main_s0_zg.c │ ├── spi_slave_interrupt │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_spi_slave_interrupt.slsproj │ │ │ ├── STK3200_EFM32ZG_spi_slave_interrupt.slsproj │ │ │ ├── STK3300_EFM32TG_spi_slave_interrupt.slsproj │ │ │ ├── STK3600_EFM32LG_spi_slave_interrupt.slsproj │ │ │ ├── STK3700_EFM32GG_spi_slave_interrupt.slsproj │ │ │ ├── STK3800_EFM32WG_spi_slave_interrupt.slsproj │ │ │ └── STKXXX_EFM32G_spi_slave_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_spi_slave.xml │ │ │ ├── EFM32G_spi_slave.xml │ │ │ ├── EFM32HG_spi_slave.xml │ │ │ ├── EFM32LG_spi_slave.xml │ │ │ ├── EFM32TG_spi_slave.xml │ │ │ ├── EFM32WG_spi_slave.xml │ │ │ └── EFM32ZG_spi_slave.xml │ │ ├── iar │ │ │ ├── EFM32GG_spi_slave_interrupt.ewd │ │ │ ├── EFM32GG_spi_slave_interrupt.ewp │ │ │ ├── EFM32G_spi_slave_interrupt.ewd │ │ │ ├── EFM32G_spi_slave_interrupt.ewp │ │ │ ├── EFM32HG_spi_slave_interrupt.ewd │ │ │ ├── EFM32HG_spi_slave_interrupt.ewp │ │ │ ├── EFM32LG_spi_slave_interrupt.ewd │ │ │ ├── EFM32LG_spi_slave_interrupt.ewp │ │ │ ├── EFM32TG_spi_slave_interrupt.ewd │ │ │ ├── EFM32TG_spi_slave_interrupt.ewp │ │ │ ├── EFM32WG_spi_slave_interrupt.ewd │ │ │ ├── EFM32WG_spi_slave_interrupt.ewp │ │ │ ├── EFM32ZG_spi_slave_interrupt.ewd │ │ │ ├── EFM32ZG_spi_slave_interrupt.ewp │ │ │ └── spi_slave_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s0_g_gg_lg_tg_wg.c │ │ │ ├── main_s0_hg.c │ │ │ └── main_s0_zg.c │ └── spi_slave_polled │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_spi_slave_polled.slsproj │ │ ├── STK3200_EFM32ZG_spi_slave_polled.slsproj │ │ ├── STK3300_EFM32TG_spi_slave_polled.slsproj │ │ ├── STK3600_EFM32LG_spi_slave_polled.slsproj │ │ ├── STK3700_EFM32GG_spi_slave_polled.slsproj │ │ ├── STK3800_EFM32WG_spi_slave_polled.slsproj │ │ └── STKXXX_EFM32G_spi_slave_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG_spi_slave_polled.xml │ │ ├── EFM32G_spi_slave_polled.xml │ │ ├── EFM32HG_spi_slave_polled.xml │ │ ├── EFM32LG_spi_slave_polled.xml │ │ ├── EFM32TG_spi_slave_polled.xml │ │ ├── EFM32WG_spi_slave_polled.xml │ │ └── EFM32ZG_spi_slave_polled.xml │ │ ├── iar │ │ ├── EFM32GG_spi_slave_polled.ewd │ │ ├── EFM32GG_spi_slave_polled.ewp │ │ ├── EFM32G_spi_slave_polled.ewd │ │ ├── EFM32G_spi_slave_polled.ewp │ │ ├── EFM32HG_spi_slave_polled.ewd │ │ ├── EFM32HG_spi_slave_polled.ewp │ │ ├── EFM32LG_spi_slave_polled.ewd │ │ ├── EFM32LG_spi_slave_polled.ewp │ │ ├── EFM32TG_spi_slave_polled.ewd │ │ ├── EFM32TG_spi_slave_polled.ewp │ │ ├── EFM32WG_spi_slave_polled.ewd │ │ ├── EFM32WG_spi_slave_polled.ewp │ │ ├── EFM32ZG_spi_slave_polled.ewd │ │ ├── EFM32ZG_spi_slave_polled.ewp │ │ └── spi_slave.eww │ │ ├── readme_g_gg_wg_lg.txt │ │ ├── readme_hg.txt │ │ ├── readme_tg.txt │ │ ├── readme_zg.txt │ │ └── src │ │ ├── main_s0_g_gg_wg_lg.c │ │ ├── main_s0_hg.c │ │ ├── main_s0_tg.c │ │ └── main_s0_zg.c ├── usbd │ ├── usbd_cdc_uart_bridge │ │ ├── SimplicityStudio │ │ │ ├── SLSTK3400A_EFM32HG_usbd_cdc_uart_bridge.slsproj │ │ │ ├── STK3600_EFM32LG_usbd_cdc_uart_bridge.slsproj │ │ │ ├── STK3700_EFM32GG_usbd_cdc_uart_bridge.slsproj │ │ │ └── STK3800_EFM32WG_usbd_cdc_uart_bridge.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_usbd_cdc_uart_bridge.xml │ │ │ ├── EFM32HG_usbd_cdc_uart_bridge.xml │ │ │ ├── EFM32LG_usbd_cdc_uart_bridge.xml │ │ │ └── EFM32WG_usbd_cdc_uart_bridge.xml │ │ ├── iar │ │ │ ├── EFM32GG_usbd_cdc_uart_bridge.ewd │ │ │ ├── EFM32GG_usbd_cdc_uart_bridge.ewp │ │ │ ├── EFM32HG_usbd_cdc_uart_bridge.ewd │ │ │ ├── EFM32HG_usbd_cdc_uart_bridge.ewp │ │ │ ├── EFM32LG_usbd_cdc_uart_bridge.ewd │ │ │ ├── EFM32LG_usbd_cdc_uart_bridge.ewp │ │ │ ├── EFM32WG_usbd_cdc_uart_bridge.ewd │ │ │ ├── EFM32WG_usbd_cdc_uart_bridge.ewp │ │ │ └── usbd_cdc_uart_bridge.eww │ │ ├── inc │ │ │ ├── descriptors.h │ │ │ ├── inc_hg │ │ │ │ └── usbconfig.h │ │ │ └── inc_series0 │ │ │ │ └── usbconfig.h │ │ ├── readme.txt │ │ └── src │ │ │ ├── descriptors.c │ │ │ └── main_s0.c │ └── usbd_cdc_vcom_echo │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_usbd_cdc_vcom_echo.slsproj │ │ ├── STK3600_EFM32LG_usbd_cdc_vcom_echo.slsproj │ │ ├── STK3700_EFM32GG_usbd_cdc_vcom_echo.slsproj │ │ └── STK3800_EFM32WG_usbd_cdc_vcom_echo.slsproj │ │ ├── doc │ │ ├── EFM32GG_usbd_cdc_vcom_echo.xml │ │ ├── EFM32HG_usbd_cdc_vcom_echo.xml │ │ ├── EFM32LG_usbd_cdc_vcom_echo.xml │ │ └── EFM32WG_usbd_cdc_vcom_echo.xml │ │ ├── iar │ │ ├── EFM32GG_usbd_cdc_vcom_echo.ewd │ │ ├── EFM32GG_usbd_cdc_vcom_echo.ewp │ │ ├── EFM32HG_usbd_cdc_vcom_echo.ewd │ │ ├── EFM32HG_usbd_cdc_vcom_echo.ewp │ │ ├── EFM32LG_usbd_cdc_vcom_echo.ewd │ │ ├── EFM32LG_usbd_cdc_vcom_echo.ewp │ │ ├── EFM32WG_usbd_cdc_vcom_echo.ewd │ │ ├── EFM32WG_usbd_cdc_vcom_echo.ewp │ │ └── usbd_cdc_vcom_echo.eww │ │ ├── inc │ │ ├── cdc_echo.h │ │ ├── descriptors.h │ │ └── inc_series0 │ │ │ └── usbconfig.h │ │ ├── readme.txt │ │ └── src │ │ ├── cdc_echo.c │ │ ├── descriptors.c │ │ └── main_s0.c ├── vcmp │ └── vcmp_interrupt │ │ ├── SimplicityStudio │ │ ├── SLSTK3400A_EFM32HG_vcmp_interrupt.slsproj │ │ ├── STK3200_EFM32ZG_vcmp_interrupt.slsproj │ │ ├── STK3300_EFM32TG_vcmp_interrupt.slsproj │ │ ├── STK3600_EFM32LG_vcmp_interrupt.slsproj │ │ ├── STK3700_EFM32GG_vcmp_interrupt.slsproj │ │ ├── STK3800_EFM32WG_vcmp_interrupt.slsproj │ │ └── STKXXX_EFM32G_vcmp_interrupt.slsproj │ │ ├── doc │ │ ├── EFM32GG_vcmp_interrupt.xml │ │ ├── EFM32G_vcmp_interrupt.xml │ │ ├── EFM32HG_vcmp_interrupt.xml │ │ ├── EFM32LG_vcmp_interrupt.xml │ │ ├── EFM32TG_vcmp_interrupt.xml │ │ ├── EFM32WG_vcmp_interrupt.xml │ │ └── EFM32ZG_vcmp_interrupt.xml │ │ ├── iar │ │ ├── EFM32GG_vcmp_interrupt.ewd │ │ ├── EFM32GG_vcmp_interrupt.ewp │ │ ├── EFM32G_vcmp_interrupt.ewd │ │ ├── EFM32G_vcmp_interrupt.ewp │ │ ├── EFM32HG_vcmp_interrupt.ewd │ │ ├── EFM32HG_vcmp_interrupt.ewp │ │ ├── EFM32LG_vcmp_interrupt.ewd │ │ ├── EFM32LG_vcmp_interrupt.ewp │ │ ├── EFM32TG_vcmp_interrupt.ewd │ │ ├── EFM32TG_vcmp_interrupt.ewp │ │ ├── EFM32WG_vcmp_interrupt.ewd │ │ ├── EFM32WG_vcmp_interrupt.ewp │ │ ├── EFM32ZG_vcmp_interrupt.ewd │ │ ├── EFM32ZG_vcmp_interrupt.ewp │ │ └── vcmp_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── vdac │ ├── vdac_continuous │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_vdac_continuous.slsproj │ │ │ ├── STK3600_EFM32LG_vdac_continuous.slsproj │ │ │ ├── STK3700_EFM32GG_vdac_continuous.slsproj │ │ │ ├── STK3800_EFM32WG_vdac_continuous.slsproj │ │ │ └── STKXXX_EFM32G_vdac_continuous.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_vdac_continuous.xml │ │ │ ├── EFM32G_vdac_continuous.xml │ │ │ ├── EFM32LG_vdac_continuous.xml │ │ │ ├── EFM32TG_vdac_continuous.xml │ │ │ └── EFM32WG_vdac_continuous.xml │ │ ├── iar │ │ │ ├── EFM32GG_vdac_continuous.ewd │ │ │ ├── EFM32GG_vdac_continuous.ewp │ │ │ ├── EFM32G_vdac_continuous.ewd │ │ │ ├── EFM32G_vdac_continuous.ewp │ │ │ ├── EFM32LG_vdac_continuous.ewd │ │ │ ├── EFM32LG_vdac_continuous.ewp │ │ │ ├── EFM32TG_vdac_continuous.ewd │ │ │ ├── EFM32TG_vdac_continuous.ewp │ │ │ ├── EFM32WG_vdac_continuous.ewd │ │ │ ├── EFM32WG_vdac_continuous.ewp │ │ │ └── vdac_continuous.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ ├── main_s0.c │ │ │ └── main_tg.c │ ├── vdac_differential │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_vdac_differential.slsproj │ │ │ ├── STK3600_EFM32LG_vdac_differential.slsproj │ │ │ ├── STK3700_EFM32GG_vdac_differential.slsproj │ │ │ ├── STK3800_EFM32WG_vdac_differential.slsproj │ │ │ └── STKXXX_EFM32G_vdac_differential.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_vdac_differential.xml │ │ │ ├── EFM32G_vdac_differential.xml │ │ │ ├── EFM32LG_vdac_differential.xml │ │ │ ├── EFM32TG_vdac_differential.xml │ │ │ └── EFM32WG_vdac_differential.xml │ │ ├── iar │ │ │ ├── EFM32GG_vdac_differential.ewd │ │ │ ├── EFM32GG_vdac_differential.ewp │ │ │ ├── EFM32G_vdac_differential.ewd │ │ │ ├── EFM32G_vdac_differential.ewp │ │ │ ├── EFM32LG_vdac_differential.ewd │ │ │ ├── EFM32LG_vdac_differential.ewp │ │ │ ├── EFM32TG_vdac_differential.ewd │ │ │ ├── EFM32TG_vdac_differential.ewp │ │ │ ├── EFM32WG_vdac_differential.ewd │ │ │ ├── EFM32WG_vdac_differential.ewp │ │ │ └── vdac_differential.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ ├── vdac_sine_wave_synch │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_vdac_sine_wave_synch.slsproj │ │ │ ├── STK3600_EFM32LG_vdac_sine_wave_synch.slsproj │ │ │ ├── STK3700_EFM32GG_vdac_sine_wave_synch.slsproj │ │ │ ├── STK3800_EFM32WG_vdac_sine_wave_synch.slsproj │ │ │ └── STKXXX_EFM32G_vdac_sine_wave_synch.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_vdac_sine_wave_synch.xml │ │ │ ├── EFM32G_vdac_sine_wave_synch.xml │ │ │ ├── EFM32LG_vdac_sine_wave_synch.xml │ │ │ ├── EFM32TG_vdac_sine_wave_synch.xml │ │ │ └── EFM32WG_vdac_sine_wave_synch.xml │ │ ├── iar │ │ │ ├── EFM32GG_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32GG_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32G_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32G_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32LG_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32LG_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32TG_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32TG_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32WG_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32WG_vdac_sine_wave_synch.ewp │ │ │ └── vdac_sine_wave_synch.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_s0.c │ ├── vdac_single │ │ ├── SimplicityStudio │ │ │ ├── STK3300_EFM32TG_vdac_single.slsproj │ │ │ ├── STK3600_EFM32LG_vdac_single.slsproj │ │ │ ├── STK3700_EFM32GG_vdac_single.slsproj │ │ │ ├── STK3800_EFM32WG_vdac_single.slsproj │ │ │ └── STKXXX_EFM32G_vdac_single.slsproj │ │ ├── doc │ │ │ ├── EFM32GG_vdac_single.xml │ │ │ ├── EFM32G_vdac_single.xml │ │ │ ├── EFM32LG_vdac_single.xml │ │ │ ├── EFM32TG_vdac_single.xml │ │ │ └── EFM32WG_vdac_single.xml │ │ ├── iar │ │ │ ├── EFM32GG_vdac_single.ewd │ │ │ ├── EFM32GG_vdac_single.ewp │ │ │ ├── EFM32G_vdac_single.ewd │ │ │ ├── EFM32G_vdac_single.ewp │ │ │ ├── EFM32LG_vdac_single.ewd │ │ │ ├── EFM32LG_vdac_single.ewp │ │ │ ├── EFM32TG_vdac_single.ewd │ │ │ ├── EFM32TG_vdac_single.ewp │ │ │ ├── EFM32WG_vdac_single.ewd │ │ │ ├── EFM32WG_vdac_single.ewp │ │ │ └── vdac_single.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_g.c │ │ │ └── main_s0.c │ └── vdac_timer_dma_waveform │ │ ├── SimplicityStudio │ │ ├── STK3300_EFM32TG_vdac_timer_dma_waveform.slsproj │ │ ├── STK3600_EFM32LG_vdac_timer_dma_waveform.slsproj │ │ ├── STK3700_EFM32GG_vdac_timer_dma_waveform.slsproj │ │ ├── STK3800_EFM32WG_vdac_timer_dma_waveform.slsproj │ │ └── STKXXX_EFM32G_vdac_timer_dma_waveform.slsproj │ │ ├── doc │ │ ├── EFM32GG_vdac_timer_dma_waveform.xml │ │ ├── EFM32G_vdac_timer_dma_waveform.xml │ │ ├── EFM32LG_vdac_timer_dma_waveform.xml │ │ ├── EFM32TG_vdac_timer_dma_waveform.xml │ │ └── EFM32WG_vdac_timer_dma_waveform.xml │ │ ├── iar │ │ ├── EFM32GG_vdac_timer_dma_waveform.ewd │ │ ├── EFM32GG_vdac_timer_dma_waveform.ewp │ │ ├── EFM32G_vdac_timer_dma_waveform.ewd │ │ ├── EFM32G_vdac_timer_dma_waveform.ewp │ │ ├── EFM32LG_vdac_timer_dma_waveform.ewd │ │ ├── EFM32LG_vdac_timer_dma_waveform.ewp │ │ ├── EFM32TG_vdac_timer_dma_waveform.ewd │ │ ├── EFM32TG_vdac_timer_dma_waveform.ewp │ │ ├── EFM32WG_vdac_timer_dma_waveform.ewd │ │ ├── EFM32WG_vdac_timer_dma_waveform.ewp │ │ └── vdac_timer_dma_waveform.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_g_tg.c │ │ └── main_s0.c └── wdog │ └── wdog_led_toggle │ ├── SimplicityStudio │ ├── SLSTK3400A_EFM32HG_wdog.slsproj │ ├── STK3200_EFM32ZG_wdog.slsproj │ ├── STK3300_EFM32TG_wdog.slsproj │ ├── STK3600_EFM32LG_wdog.slsproj │ ├── STK3700_EFM32GG_wdog.slsproj │ ├── STK3800_EFM32WG_wdog.slsproj │ └── STKXXX_EFM32G_wdog.slsproj │ ├── doc │ ├── EFM32GG_wdog.xml │ ├── EFM32G_wdog.xml │ ├── EFM32HG_wdog.xml │ ├── EFM32LG_wdog.xml │ ├── EFM32TG_wdog.xml │ ├── EFM32WG_wdog.xml │ └── EFM32ZG_wdog.xml │ ├── iar │ ├── EFM32GG_wdog.ewd │ ├── EFM32GG_wdog.ewp │ ├── EFM32G_wdog.ewd │ ├── EFM32G_wdog.ewp │ ├── EFM32HG_wdog.ewd │ ├── EFM32HG_wdog.ewp │ ├── EFM32LG_wdog.ewd │ ├── EFM32LG_wdog.ewp │ ├── EFM32TG_wdog.ewd │ ├── EFM32TG_wdog.ewp │ ├── EFM32WG_wdog.ewd │ ├── EFM32WG_wdog.ewp │ ├── EFM32ZG_wdog.ewd │ ├── EFM32ZG_wdog.ewp │ └── wdog_led_toggle.eww │ ├── readme.txt │ └── src │ └── main.c ├── series1 ├── acmp │ ├── acmp_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_acmp_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_acmp_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_acmp_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_acmp_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_acmp_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_acmp_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_acmp_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_acmp_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_acmp_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_acmp_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_acmp_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_acmp_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_acmp_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_acmp_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_acmp_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_acmp_interrupt.xml │ │ │ ├── EFM32PG12B_acmp_interrupt.xml │ │ │ ├── EFM32PG1B_acmp_interrupt.xml │ │ │ ├── EFM32TG11B_acmp_interrupt.xml │ │ │ ├── EFR32BG12P_acmp_interrupt.xml │ │ │ ├── EFR32BG13P_acmp_interrupt.xml │ │ │ ├── EFR32BG1P_acmp_interrupt.xml │ │ │ ├── EFR32FG12P_acmp_interrupt.xml │ │ │ ├── EFR32FG13P_acmp_interrupt.xml │ │ │ ├── EFR32FG14P_acmp_interrupt.xml │ │ │ ├── EFR32FG1P_acmp_interrupt.xml │ │ │ ├── EFR32MG12P_acmp_interrupt.xml │ │ │ ├── EFR32MG13P_acmp_interrupt.xml │ │ │ ├── EFR32MG14P_acmp_interrupt.xml │ │ │ └── EFR32MG1P_acmp_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_acmp_interrupt.ewd │ │ │ ├── EFM32GG11B_acmp_interrupt.ewp │ │ │ ├── EFM32PG12B_acmp_interrupt.ewd │ │ │ ├── EFM32PG12B_acmp_interrupt.ewp │ │ │ ├── EFM32PG1B_acmp_interrupt.ewd │ │ │ ├── EFM32PG1B_acmp_interrupt.ewp │ │ │ ├── EFM32TG11B_acmp_interrupt.ewd │ │ │ ├── EFM32TG11B_acmp_interrupt.ewp │ │ │ ├── EFR32BG12P_acmp_interrupt.ewd │ │ │ ├── EFR32BG12P_acmp_interrupt.ewp │ │ │ ├── EFR32BG13P_acmp_interrupt.ewd │ │ │ ├── EFR32BG13P_acmp_interrupt.ewp │ │ │ ├── EFR32BG1P_acmp_interrupt.ewd │ │ │ ├── EFR32BG1P_acmp_interrupt.ewp │ │ │ ├── EFR32FG12P_acmp_interrupt.ewd │ │ │ ├── EFR32FG12P_acmp_interrupt.ewp │ │ │ ├── EFR32FG13P_acmp_interrupt.ewd │ │ │ ├── EFR32FG13P_acmp_interrupt.ewp │ │ │ ├── EFR32FG14P_acmp_interrupt.ewd │ │ │ ├── EFR32FG14P_acmp_interrupt.ewp │ │ │ ├── EFR32FG1P_acmp_interrupt.ewd │ │ │ ├── EFR32FG1P_acmp_interrupt.ewp │ │ │ ├── EFR32MG12P_acmp_interrupt.ewd │ │ │ ├── EFR32MG12P_acmp_interrupt.ewp │ │ │ ├── EFR32MG13P_acmp_interrupt.ewd │ │ │ ├── EFR32MG13P_acmp_interrupt.ewp │ │ │ ├── EFR32MG14P_acmp_interrupt.ewd │ │ │ ├── EFR32MG14P_acmp_interrupt.ewp │ │ │ ├── EFR32MG1P_acmp_interrupt.ewd │ │ │ ├── EFR32MG1P_acmp_interrupt.ewp │ │ │ └── acmp_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── acmp_pin_output │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_acmp_pin_output.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_acmp_pin_output.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_acmp_pin_output.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_acmp_pin_output.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_acmp_pin_output.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_acmp_pin_output.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_acmp_pin_output.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_acmp_pin_output.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_acmp_pin_output.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_acmp_pin_output.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_acmp_pin_output.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_acmp_pin_output.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_acmp_pin_output.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_acmp_pin_output.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_acmp_pin_output.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_acmp_pin_output.xml │ │ │ ├── EFM32PG12B_acmp_pin_output.xml │ │ │ ├── EFM32PG1B_acmp_pin_output.xml │ │ │ ├── EFM32TG11B_acmp_pin_output.xml │ │ │ ├── EFR32BG12P_acmp_pin_output.xml │ │ │ ├── EFR32BG13P_acmp_pin_output.xml │ │ │ ├── EFR32BG1P_acmp_pin_output.xml │ │ │ ├── EFR32FG12P_acmp_pin_output.xml │ │ │ ├── EFR32FG13P_acmp_pin_output.xml │ │ │ ├── EFR32FG14P_acmp_pin_output.xml │ │ │ ├── EFR32FG1P_acmp_pin_output.xml │ │ │ ├── EFR32MG12P_acmp_pin_output.xml │ │ │ ├── EFR32MG13P_acmp_pin_output.xml │ │ │ ├── EFR32MG14P_acmp_pin_output.xml │ │ │ └── EFR32MG1P_acmp_pin_output.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_acmp_pin_output.ewd │ │ │ ├── EFM32GG11B_acmp_pin_output.ewp │ │ │ ├── EFM32PG12B_acmp_pin_output.ewd │ │ │ ├── EFM32PG12B_acmp_pin_output.ewp │ │ │ ├── EFM32PG1B_acmp_pin_output.ewd │ │ │ ├── EFM32PG1B_acmp_pin_output.ewp │ │ │ ├── EFM32TG11B_acmp_pin_output.ewd │ │ │ ├── EFM32TG11B_acmp_pin_output.ewp │ │ │ ├── EFR32BG12P_acmp_pin_output.ewd │ │ │ ├── EFR32BG12P_acmp_pin_output.ewp │ │ │ ├── EFR32BG13P_acmp_pin_output.ewd │ │ │ ├── EFR32BG13P_acmp_pin_output.ewp │ │ │ ├── EFR32BG1P_acmp_pin_output.ewd │ │ │ ├── EFR32BG1P_acmp_pin_output.ewp │ │ │ ├── EFR32FG12P_acmp_pin_output.ewd │ │ │ ├── EFR32FG12P_acmp_pin_output.ewp │ │ │ ├── EFR32FG13P_acmp_pin_output.ewd │ │ │ ├── EFR32FG13P_acmp_pin_output.ewp │ │ │ ├── EFR32FG14P_acmp_pin_output.ewd │ │ │ ├── EFR32FG14P_acmp_pin_output.ewp │ │ │ ├── EFR32FG1P_acmp_pin_output.ewd │ │ │ ├── EFR32FG1P_acmp_pin_output.ewp │ │ │ ├── EFR32MG12P_acmp_pin_output.ewd │ │ │ ├── EFR32MG12P_acmp_pin_output.ewp │ │ │ ├── EFR32MG13P_acmp_pin_output.ewd │ │ │ ├── EFR32MG13P_acmp_pin_output.ewp │ │ │ ├── EFR32MG14P_acmp_pin_output.ewd │ │ │ ├── EFR32MG14P_acmp_pin_output.ewp │ │ │ ├── EFR32MG1P_acmp_pin_output.ewd │ │ │ ├── EFR32MG1P_acmp_pin_output.ewp │ │ │ └── acmp_pin_output.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ └── acmp_polled │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_acmp_polled.slsproj │ │ ├── BRD4103A_EFR32BG12P_acmp_polled.slsproj │ │ ├── BRD4104A_EFR32BG13P_acmp_polled.slsproj │ │ ├── BRD4151A_EFR32MG1P_acmp_polled.slsproj │ │ ├── BRD4159A_EFR32MG13P_acmp_polled.slsproj │ │ ├── BRD4161A_EFR32MG12P_acmp_polled.slsproj │ │ ├── BRD4169A_EFR32MG14P_acmp_polled.slsproj │ │ ├── BRD4250A_EFR32FG1P_acmp_polled.slsproj │ │ ├── BRD4253A_EFR32FG12P_acmp_polled.slsproj │ │ ├── BRD4256A_EFR32FG13P_acmp_polled.slsproj │ │ ├── BRD4257A_EFR32FG14P_acmp_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_acmp_polled.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_acmp_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_acmp_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11B_acmp_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_acmp_polled.xml │ │ ├── EFM32PG12B_acmp_polled.xml │ │ ├── EFM32PG1B_acmp_polled.xml │ │ ├── EFM32TG11B_acmp_polled.xml │ │ ├── EFR32BG12P_acmp_polled.xml │ │ ├── EFR32BG13P_acmp_polled.xml │ │ ├── EFR32BG1P_acmp_polled.xml │ │ ├── EFR32FG12P_acmp_polled.xml │ │ ├── EFR32FG13P_acmp_polled.xml │ │ ├── EFR32FG14P_acmp_polled.xml │ │ ├── EFR32FG1P_acmp_polled.xml │ │ ├── EFR32MG12P_acmp_polled.xml │ │ ├── EFR32MG13P_acmp_polled.xml │ │ ├── EFR32MG14P_acmp_polled.xml │ │ └── EFR32MG1P_acmp_polled.xml │ │ ├── iar │ │ ├── EFM32GG11B_acmp_polled.ewd │ │ ├── EFM32GG11B_acmp_polled.ewp │ │ ├── EFM32PG12B_acmp_polled.ewd │ │ ├── EFM32PG12B_acmp_polled.ewp │ │ ├── EFM32PG1B_acmp_polled.ewd │ │ ├── EFM32PG1B_acmp_polled.ewp │ │ ├── EFM32TG11B_acmp_polled.ewd │ │ ├── EFM32TG11B_acmp_polled.ewp │ │ ├── EFR32BG12P_acmp_polled.ewd │ │ ├── EFR32BG12P_acmp_polled.ewp │ │ ├── EFR32BG13P_acmp_polled.ewd │ │ ├── EFR32BG13P_acmp_polled.ewp │ │ ├── EFR32BG1P_acmp_polled.ewd │ │ ├── EFR32BG1P_acmp_polled.ewp │ │ ├── EFR32FG12P_acmp_polled.ewd │ │ ├── EFR32FG12P_acmp_polled.ewp │ │ ├── EFR32FG13P_acmp_polled.ewd │ │ ├── EFR32FG13P_acmp_polled.ewp │ │ ├── EFR32FG14P_acmp_polled.ewd │ │ ├── EFR32FG14P_acmp_polled.ewp │ │ ├── EFR32FG1P_acmp_polled.ewd │ │ ├── EFR32FG1P_acmp_polled.ewp │ │ ├── EFR32MG12P_acmp_polled.ewd │ │ ├── EFR32MG12P_acmp_polled.ewp │ │ ├── EFR32MG13P_acmp_polled.ewd │ │ ├── EFR32MG13P_acmp_polled.ewp │ │ ├── EFR32MG14P_acmp_polled.ewd │ │ ├── EFR32MG14P_acmp_polled.ewp │ │ ├── EFR32MG1P_acmp_polled.ewd │ │ ├── EFR32MG1P_acmp_polled.ewp │ │ └── acmp_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11.c │ │ ├── main_s1.c │ │ └── main_tg11.c ├── adc │ ├── adc_scan_diff_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_scan_diff_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_scan_diff_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_scan_diff_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_scan_diff_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_scan_diff_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_scan_diff_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_scan_diff_interrupt.xml │ │ │ ├── EFM32PG12B_adc_scan_diff_interrupt.xml │ │ │ ├── EFM32PG1B_adc_scan_diff_interrupt.xml │ │ │ ├── EFM32TG11B_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32BG12P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32BG13P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32BG1P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32FG12P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32FG13P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32FG14P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32FG1P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32MG12P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32MG13P_adc_scan_diff_interrupt.xml │ │ │ ├── EFR32MG14P_adc_scan_diff_interrupt.xml │ │ │ └── EFR32MG1P_adc_scan_diff_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_scan_diff_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_scan_diff_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_scan_diff_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_scan_diff_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_scan_diff_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_scan_diff_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_scan_diff_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_scan_diff_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_scan_diff_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_scan_diff_interrupt.ewp │ │ │ └── adc_scan_diff_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_scan_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_scan_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_scan_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_scan_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_scan_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_scan_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_scan_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_scan_interrupt.xml │ │ │ ├── EFM32PG12B_adc_scan_interrupt.xml │ │ │ ├── EFM32PG1B_adc_scan_interrupt.xml │ │ │ ├── EFM32TG11B_adc_scan_interrupt.xml │ │ │ ├── EFR32BG12P_adc_scan_interrupt.xml │ │ │ ├── EFR32BG13P_adc_scan_interrupt.xml │ │ │ ├── EFR32BG1P_adc_scan_interrupt.xml │ │ │ ├── EFR32FG12P_adc_scan_interrupt.xml │ │ │ ├── EFR32FG13P_adc_scan_interrupt.xml │ │ │ ├── EFR32FG14P_adc_scan_interrupt.xml │ │ │ ├── EFR32FG1P_adc_scan_interrupt.xml │ │ │ ├── EFR32MG12P_adc_scan_interrupt.xml │ │ │ ├── EFR32MG13P_adc_scan_interrupt.xml │ │ │ ├── EFR32MG14P_adc_scan_interrupt.xml │ │ │ └── EFR32MG1P_adc_scan_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_scan_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_scan_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_scan_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_scan_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_scan_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_scan_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_scan_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_scan_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_scan_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_scan_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_scan_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_scan_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_scan_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_scan_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_scan_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_scan_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_scan_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_scan_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_scan_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_scan_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_scan_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_scan_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_scan_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_scan_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_scan_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_scan_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_scan_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_scan_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_scan_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_scan_interrupt.ewp │ │ │ └── adc_scan_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_scan_letimer_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_scan_letimer_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_scan_letimer_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_scan_letimer_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_scan_letimer_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_scan_letimer_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_scan_letimer_interrupt.xml │ │ │ ├── EFM32PG12B_adc_scan_letimer_interrupt.xml │ │ │ ├── EFM32PG1B_adc_scan_letimer_interrupt.xml │ │ │ ├── EFM32TG11B_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32BG12P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32BG13P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32BG1P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32FG12P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32FG13P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32FG14P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32FG1P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG12P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG13P_adc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG14P_adc_scan_letimer_interrupt.xml │ │ │ └── EFR32MG1P_adc_scan_letimer_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_scan_letimer_interrupt.ewp │ │ │ └── adc_scan_letimer_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_scan_letimer_prs_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_scan_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_scan_letimer_prs_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_scan_letimer_prs_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFM32PG12B_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFM32PG1B_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFM32TG11B_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32BG12P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32BG13P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32BG1P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32FG12P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32FG13P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32FG14P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32FG1P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32MG12P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32MG13P_adc_scan_letimer_prs_dma.xml │ │ │ ├── EFR32MG14P_adc_scan_letimer_prs_dma.xml │ │ │ └── EFR32MG1P_adc_scan_letimer_prs_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32GG11B_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFM32PG12B_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32PG12B_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFM32PG1B_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32PG1B_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFM32TG11B_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFM32TG11B_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32BG12P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32BG12P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32BG13P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32BG13P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32BG1P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32BG1P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32FG12P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32FG12P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32FG13P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32FG13P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32FG14P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32FG14P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32FG1P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32FG1P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32MG12P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32MG12P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32MG13P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32MG13P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32MG14P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32MG14P_adc_scan_letimer_prs_dma.ewp │ │ │ ├── EFR32MG1P_adc_scan_letimer_prs_dma.ewd │ │ │ ├── EFR32MG1P_adc_scan_letimer_prs_dma.ewp │ │ │ └── adc_scan_letimer_prs_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_scan_prs_gpio_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_scan_prs_gpio_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_scan_prs_gpio_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_scan_prs_gpio_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32PG12B_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32PG1B_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFM32TG11B_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32BG12P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32BG13P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32BG1P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32FG12P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32FG13P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32FG14P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32FG1P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32MG12P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32MG13P_adc_scan_prs_gpio_dma.xml │ │ │ ├── EFR32MG14P_adc_scan_prs_gpio_dma.xml │ │ │ └── EFR32MG1P_adc_scan_prs_gpio_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32GG11B_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32PG12B_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32PG12B_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32PG1B_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32PG1B_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFM32TG11B_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFM32TG11B_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32BG12P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32BG12P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32BG13P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32BG13P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32BG1P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32BG1P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32FG12P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32FG12P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32FG13P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32FG13P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32FG14P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32FG14P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32FG1P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32FG1P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32MG12P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32MG12P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32MG13P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32MG13P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32MG14P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32MG14P_adc_scan_prs_gpio_dma.ewp │ │ │ ├── EFR32MG1P_adc_scan_prs_gpio_dma.ewd │ │ │ ├── EFR32MG1P_adc_scan_prs_gpio_dma.ewp │ │ │ └── adc_scan_prs_gpio_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_single_diff_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_single_diff_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_single_diff_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_diff_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_diff_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_diff_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_single_diff_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_single_diff_interrupt.xml │ │ │ ├── EFM32PG12B_adc_single_diff_interrupt.xml │ │ │ ├── EFM32PG1B_adc_single_diff_interrupt.xml │ │ │ ├── EFM32TG11B_adc_single_diff_interrupt.xml │ │ │ ├── EFR32BG12P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32BG13P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32BG1P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32FG12P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32FG13P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32FG14P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32FG1P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32MG12P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32MG13P_adc_single_diff_interrupt.xml │ │ │ ├── EFR32MG14P_adc_single_diff_interrupt.xml │ │ │ └── EFR32MG1P_adc_single_diff_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_single_diff_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_single_diff_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_single_diff_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_single_diff_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_single_diff_interrupt.ewp │ │ │ └── adc_single_diff_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_single_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_single_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_single_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_single_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_single_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_single_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_single_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_single_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_single_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_single_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_single_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_single_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_single_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_single_interrupt.xml │ │ │ ├── EFM32PG12B_adc_single_interrupt.xml │ │ │ ├── EFM32PG1B_adc_single_interrupt.xml │ │ │ ├── EFM32TG11B_adc_single_interrupt.xml │ │ │ ├── EFR32BG12P_adc_single_interrupt.xml │ │ │ ├── EFR32BG13P_adc_single_interrupt.xml │ │ │ ├── EFR32BG1P_adc_single_interrupt.xml │ │ │ ├── EFR32FG12P_adc_single_interrupt.xml │ │ │ ├── EFR32FG13P_adc_single_interrupt.xml │ │ │ ├── EFR32FG14P_adc_single_interrupt.xml │ │ │ ├── EFR32FG1P_adc_single_interrupt.xml │ │ │ ├── EFR32MG12P_adc_single_interrupt.xml │ │ │ ├── EFR32MG13P_adc_single_interrupt.xml │ │ │ ├── EFR32MG14P_adc_single_interrupt.xml │ │ │ └── EFR32MG1P_adc_single_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_single_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_single_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_single_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_single_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_single_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_single_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_single_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_single_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_single_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_single_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_single_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_single_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_single_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_single_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_single_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_single_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_single_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_single_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_single_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_single_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_single_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_single_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_single_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_single_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_single_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_single_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_single_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_single_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_single_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_single_interrupt.ewp │ │ │ └── adc_single_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_single_letimer_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_single_letimer_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_letimer_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_letimer_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_letimer_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_single_letimer_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32PG12B_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32PG1B_adc_single_letimer_interrupt.xml │ │ │ ├── EFM32TG11B_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32BG12P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32BG13P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32BG1P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32FG12P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32FG13P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32FG14P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32FG1P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG12P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG13P_adc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG14P_adc_single_letimer_interrupt.xml │ │ │ └── EFR32MG1P_adc_single_letimer_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32GG11B_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32PG12B_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32PG12B_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32PG1B_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32PG1B_adc_single_letimer_interrupt.ewp │ │ │ ├── EFM32TG11B_adc_single_letimer_interrupt.ewd │ │ │ ├── EFM32TG11B_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32BG12P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32BG12P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32BG13P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32BG13P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32BG1P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32BG1P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32FG12P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32FG12P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32FG13P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32FG13P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32FG14P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32FG14P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32FG1P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32FG1P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG12P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG12P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG13P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG13P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG14P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG14P_adc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG1P_adc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG1P_adc_single_letimer_interrupt.ewp │ │ │ └── adc_single_letimer_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_single_letimer_prs_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_single_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_letimer_prs_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_letimer_prs_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_single_letimer_prs_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_single_letimer_prs_dma.xml │ │ │ ├── EFM32PG12B_adc_single_letimer_prs_dma.xml │ │ │ ├── EFM32PG1B_adc_single_letimer_prs_dma.xml │ │ │ ├── EFM32TG11B_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32BG12P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32BG13P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32BG1P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32FG12P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32FG13P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32FG14P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32FG1P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32MG12P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32MG13P_adc_single_letimer_prs_dma.xml │ │ │ ├── EFR32MG14P_adc_single_letimer_prs_dma.xml │ │ │ └── EFR32MG1P_adc_single_letimer_prs_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32GG11B_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFM32PG12B_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32PG12B_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFM32PG1B_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32PG1B_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFM32TG11B_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFM32TG11B_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32BG12P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32BG12P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32BG13P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32BG13P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32BG1P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32BG1P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32FG12P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32FG12P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32FG13P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32FG13P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32FG14P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32FG14P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32FG1P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32FG1P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32MG12P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32MG12P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32MG13P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32MG13P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32MG14P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32MG14P_adc_single_letimer_prs_dma.ewp │ │ │ ├── EFR32MG1P_adc_single_letimer_prs_dma.ewd │ │ │ ├── EFR32MG1P_adc_single_letimer_prs_dma.ewp │ │ │ └── adc_single_letimer_prs_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── adc_single_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_adc_single_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_adc_single_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_adc_single_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_adc_single_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_adc_single_polled.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_adc_single_polled.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_adc_single_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_adc_single_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_adc_single_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_adc_single_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_adc_single_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_adc_single_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_adc_single_polled.xml │ │ │ ├── EFM32PG12B_adc_single_polled.xml │ │ │ ├── EFM32PG1B_adc_single_polled.xml │ │ │ ├── EFM32TG11B_adc_single_polled.xml │ │ │ ├── EFR32BG12P_adc_single_polled.xml │ │ │ ├── EFR32BG13P_adc_single_polled.xml │ │ │ ├── EFR32BG1P_adc_single_polled.xml │ │ │ ├── EFR32FG12P_adc_single_polled.xml │ │ │ ├── EFR32FG13P_adc_single_polled.xml │ │ │ ├── EFR32FG14P_adc_single_polled.xml │ │ │ ├── EFR32FG1P_adc_single_polled.xml │ │ │ ├── EFR32MG12P_adc_single_polled.xml │ │ │ ├── EFR32MG13P_adc_single_polled.xml │ │ │ ├── EFR32MG14P_adc_single_polled.xml │ │ │ └── EFR32MG1P_adc_single_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_adc_single_polled.ewd │ │ │ ├── EFM32GG11B_adc_single_polled.ewp │ │ │ ├── EFM32PG12B_adc_single_polled.ewd │ │ │ ├── EFM32PG12B_adc_single_polled.ewp │ │ │ ├── EFM32PG1B_adc_single_polled.ewd │ │ │ ├── EFM32PG1B_adc_single_polled.ewp │ │ │ ├── EFM32TG11B_adc_single_polled.ewd │ │ │ ├── EFM32TG11B_adc_single_polled.ewp │ │ │ ├── EFR32BG12P_adc_single_polled.ewd │ │ │ ├── EFR32BG12P_adc_single_polled.ewp │ │ │ ├── EFR32BG13P_adc_single_polled.ewd │ │ │ ├── EFR32BG13P_adc_single_polled.ewp │ │ │ ├── EFR32BG1P_adc_single_polled.ewd │ │ │ ├── EFR32BG1P_adc_single_polled.ewp │ │ │ ├── EFR32FG12P_adc_single_polled.ewd │ │ │ ├── EFR32FG12P_adc_single_polled.ewp │ │ │ ├── EFR32FG13P_adc_single_polled.ewd │ │ │ ├── EFR32FG13P_adc_single_polled.ewp │ │ │ ├── EFR32FG14P_adc_single_polled.ewd │ │ │ ├── EFR32FG14P_adc_single_polled.ewp │ │ │ ├── EFR32FG1P_adc_single_polled.ewd │ │ │ ├── EFR32FG1P_adc_single_polled.ewp │ │ │ ├── EFR32MG12P_adc_single_polled.ewd │ │ │ ├── EFR32MG12P_adc_single_polled.ewp │ │ │ ├── EFR32MG13P_adc_single_polled.ewd │ │ │ ├── EFR32MG13P_adc_single_polled.ewp │ │ │ ├── EFR32MG14P_adc_single_polled.ewd │ │ │ ├── EFR32MG14P_adc_single_polled.ewp │ │ │ ├── EFR32MG1P_adc_single_polled.ewd │ │ │ ├── EFR32MG1P_adc_single_polled.ewp │ │ │ └── adc_single_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_xg14.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ └── adc_single_prs_gpio_dma │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4103A_EFR32BG12P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4104A_EFR32BG13P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4151A_EFR32MG1P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4159A_EFR32MG13P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4161A_EFR32MG12P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4169A_EFR32MG14P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4250A_EFR32FG1P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4253A_EFR32FG12P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4256A_EFR32FG13P_adc_single_prs_gpio_dma.slsproj │ │ ├── BRD4257A_EFR32FG14P_adc_single_prs_gpio_dma.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_adc_single_prs_gpio_dma.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_adc_single_prs_gpio_dma.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_adc_single_prs_gpio_dma.slsproj │ │ └── SLSTK3701A_EFM32GG11B_adc_single_prs_gpio_dma.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_adc_single_prs_gpio_dma.xml │ │ ├── EFM32PG12B_adc_single_prs_gpio_dma.xml │ │ ├── EFM32PG1B_adc_single_prs_gpio_dma.xml │ │ ├── EFM32TG11B_adc_single_prs_gpio_dma.xml │ │ ├── EFR32BG12P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32BG13P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32BG1P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32FG12P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32FG13P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32FG14P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32FG1P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32MG12P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32MG13P_adc_single_prs_gpio_dma.xml │ │ ├── EFR32MG14P_adc_single_prs_gpio_dma.xml │ │ └── EFR32MG1P_adc_single_prs_gpio_dma.xml │ │ ├── iar │ │ ├── EFM32GG11B_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32GG11B_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32PG12B_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32PG12B_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32PG1B_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32PG1B_adc_single_prs_gpio_dma.ewp │ │ ├── EFM32TG11B_adc_single_prs_gpio_dma.ewd │ │ ├── EFM32TG11B_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32BG12P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32BG12P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32BG13P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32BG13P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32BG1P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32BG1P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32FG12P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32FG12P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32FG13P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32FG13P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32FG14P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32FG14P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32FG1P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32FG1P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32MG12P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32MG12P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32MG13P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32MG13P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32MG14P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32MG14P_adc_single_prs_gpio_dma.ewp │ │ ├── EFR32MG1P_adc_single_prs_gpio_dma.ewd │ │ ├── EFR32MG1P_adc_single_prs_gpio_dma.ewp │ │ └── adc_single_prs_gpio_dma.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11_xg14.c │ │ ├── main_s1.c │ │ └── main_tg11.c ├── cmu │ ├── hfrco_cal_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4158A_EFR32MG13_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4162A_EFR32MG12_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4255A_EFR32FG13_hfrco_cal_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14_hfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_hfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_hfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_hfrco_cal_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_hfrco_cal_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_hfrco_cal_interrupt.xml │ │ │ ├── EFM32PG12_hfrco_cal_interrupt.xml │ │ │ ├── EFM32PG1_hfrco_cal_interrupt.xml │ │ │ ├── EFM32TG11_hfrco_cal_interrupt.xml │ │ │ ├── EFR32BG12_hfrco_cal_interrupt.xml │ │ │ ├── EFR32BG13_hfrco_cal_interrupt.xml │ │ │ ├── EFR32BG1_hfrco_cal_interrupt.xml │ │ │ ├── EFR32FG12_hfrco_cal_interrupt.xml │ │ │ ├── EFR32FG13_hfrco_cal_interrupt.xml │ │ │ ├── EFR32FG14_hfrco_cal_interrupt.xml │ │ │ ├── EFR32FG1_hfrco_cal_interrupt.xml │ │ │ ├── EFR32MG12_hfrco_cal_interrupt.xml │ │ │ ├── EFR32MG13_hfrco_cal_interrupt.xml │ │ │ └── EFR32MG1_hfrco_cal_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_hfrco_cal_interrupt.ewd │ │ │ ├── EFM32GG11_hfrco_cal_interrupt.ewp │ │ │ ├── EFM32PG12_hfrco_cal_interrupt.ewd │ │ │ ├── EFM32PG12_hfrco_cal_interrupt.ewp │ │ │ ├── EFM32PG1_hfrco_cal_interrupt.ewd │ │ │ ├── EFM32PG1_hfrco_cal_interrupt.ewp │ │ │ ├── EFM32TG11_hfrco_cal_interrupt.ewd │ │ │ ├── EFM32TG11_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG12_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG12_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG13_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG13_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG1_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG1_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG12_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG12_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG13_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG13_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG14_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG14_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG1_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG1_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG12_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG12_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG13_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG13_hfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG1_hfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG1_hfrco_cal_interrupt.ewp │ │ │ └── hfrco_cal_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_efr32_efm32jg_pg.c │ │ │ └── main_tg_gg.c │ ├── hfrco_cal_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1_hfrco_cal_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12_hfrco_cal_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13_hfrco_cal_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1_hfrco_cal_polled.slsproj │ │ │ ├── BRD4158A_EFR32MG13_hfrco_cal_polled.slsproj │ │ │ ├── BRD4162A_EFR32MG12_hfrco_cal_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1_hfrco_cal_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12_hfrco_cal_polled.slsproj │ │ │ ├── BRD4255A_EFR32FG13_hfrco_cal_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14_hfrco_cal_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_hfrco_cal_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_hfrco_cal_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_hfrco_cal_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_hfrco_cal_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_hfrco_cal_polled.xml │ │ │ ├── EFM32PG12_hfrco_cal_polled.xml │ │ │ ├── EFM32PG1_hfrco_cal_polled.xml │ │ │ ├── EFM32TG11_hfrco_cal_polled.xml │ │ │ ├── EFR32BG12_hfrco_cal_polled.xml │ │ │ ├── EFR32BG13_hfrco_cal_polled.xml │ │ │ ├── EFR32BG1_hfrco_cal_polled.xml │ │ │ ├── EFR32FG12_hfrco_cal_polled.xml │ │ │ ├── EFR32FG13_hfrco_cal_polled.xml │ │ │ ├── EFR32FG14_hfrco_cal_polled.xml │ │ │ ├── EFR32FG1_hfrco_cal_polled.xml │ │ │ ├── EFR32MG12_hfrco_cal_polled.xml │ │ │ ├── EFR32MG13_hfrco_cal_polled.xml │ │ │ └── EFR32MG1_hfrco_cal_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11_hfrco_cal_polled.ewd │ │ │ ├── EFM32GG11_hfrco_cal_polled.ewp │ │ │ ├── EFM32PG12_hfrco_cal_polled.ewd │ │ │ ├── EFM32PG12_hfrco_cal_polled.ewp │ │ │ ├── EFM32PG1_hfrco_cal_polled.ewd │ │ │ ├── EFM32PG1_hfrco_cal_polled.ewp │ │ │ ├── EFM32TG11_hfrco_cal_polled.ewd │ │ │ ├── EFM32TG11_hfrco_cal_polled.ewp │ │ │ ├── EFR32BG12_hfrco_cal_polled.ewd │ │ │ ├── EFR32BG12_hfrco_cal_polled.ewp │ │ │ ├── EFR32BG13_hfrco_cal_polled.ewd │ │ │ ├── EFR32BG13_hfrco_cal_polled.ewp │ │ │ ├── EFR32BG1_hfrco_cal_polled.ewd │ │ │ ├── EFR32BG1_hfrco_cal_polled.ewp │ │ │ ├── EFR32FG12_hfrco_cal_polled.ewd │ │ │ ├── EFR32FG12_hfrco_cal_polled.ewp │ │ │ ├── EFR32FG13_hfrco_cal_polled.ewd │ │ │ ├── EFR32FG13_hfrco_cal_polled.ewp │ │ │ ├── EFR32FG14_hfrco_cal_polled.ewd │ │ │ ├── EFR32FG14_hfrco_cal_polled.ewp │ │ │ ├── EFR32FG1_hfrco_cal_polled.ewd │ │ │ ├── EFR32FG1_hfrco_cal_polled.ewp │ │ │ ├── EFR32MG12_hfrco_cal_polled.ewd │ │ │ ├── EFR32MG12_hfrco_cal_polled.ewp │ │ │ ├── EFR32MG13_hfrco_cal_polled.ewd │ │ │ ├── EFR32MG13_hfrco_cal_polled.ewp │ │ │ ├── EFR32MG1_hfrco_cal_polled.ewd │ │ │ ├── EFR32MG1_hfrco_cal_polled.ewp │ │ │ └── hfrco_cal_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_efr32_efm32jg_pg.c │ │ │ └── main_tg_gg.c │ ├── lfrco_cal_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4158A_EFR32MG13_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4162A_EFR32MG12_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4255A_EFR32FG13_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14_lfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_lfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_lfrco_cal_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_lfrco_cal_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_lfrco_cal_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_lfrco_cal_interrupt.xml │ │ │ ├── EFM32PG12_lfrco_cal_interrupt.xml │ │ │ ├── EFM32PG1_lfrco_cal_interrupt.xml │ │ │ ├── EFM32TG11_lfrco_cal_interrupt.xml │ │ │ ├── EFR32BG12_lfrco_cal_interrupt.xml │ │ │ ├── EFR32BG13_lfrco_cal_interrupt.xml │ │ │ ├── EFR32BG1_lfrco_cal_interrupt.xml │ │ │ ├── EFR32FG12_lfrco_cal_interrupt.xml │ │ │ ├── EFR32FG13_lfrco_cal_interrupt.xml │ │ │ ├── EFR32FG14_lfrco_cal_interrupt.xml │ │ │ ├── EFR32FG1_lfrco_cal_interrupt.xml │ │ │ ├── EFR32MG12_lfrco_cal_interrupt.xml │ │ │ ├── EFR32MG13_lfrco_cal_interrupt.xml │ │ │ └── EFR32MG1_lfrco_cal_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_lfrco_cal_interrupt.ewd │ │ │ ├── EFM32GG11_lfrco_cal_interrupt.ewp │ │ │ ├── EFM32PG12_lfrco_cal_interrupt.ewd │ │ │ ├── EFM32PG12_lfrco_cal_interrupt.ewp │ │ │ ├── EFM32PG1_lfrco_cal_interrupt.ewd │ │ │ ├── EFM32PG1_lfrco_cal_interrupt.ewp │ │ │ ├── EFM32TG11_lfrco_cal_interrupt.ewd │ │ │ ├── EFM32TG11_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG12_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG12_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG13_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG13_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32BG1_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32BG1_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG12_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG12_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG13_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG13_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG14_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG14_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32FG1_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG1_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG12_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG12_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG13_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG13_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG1_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG1_lfrco_cal_interrupt.ewp │ │ │ └── lfrco_cal_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_efr32_efm32jg_pg.c │ │ │ └── main_tg_gg.c │ └── lfrco_cal_polled │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1_lfrco_cal_polled.slsproj │ │ ├── BRD4103A_EFR32BG12_lfrco_cal_polled.slsproj │ │ ├── BRD4104A_EFR32BG13_lfrco_cal_polled.slsproj │ │ ├── BRD4151A_EFR32MG1_lfrco_cal_polled.slsproj │ │ ├── BRD4158A_EFR32MG13_lfrco_cal_polled.slsproj │ │ ├── BRD4162A_EFR32MG12_lfrco_cal_polled.slsproj │ │ ├── BRD4250A_EFR32FG1_lfrco_cal_polled.slsproj │ │ ├── BRD4253A_EFR32FG12_lfrco_cal_polled.slsproj │ │ ├── BRD4255A_EFR32FG13_lfrco_cal_polled.slsproj │ │ ├── BRD4257A_EFR32FG14_lfrco_cal_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11_lfrco_cal_polled.slsproj │ │ ├── SLSTK3401A_EFM32PG1_lfrco_cal_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12_lfrco_cal_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11_lfrco_cal_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG11_lfrco_cal_polled.xml │ │ ├── EFM32PG12_lfrco_cal_polled.xml │ │ ├── EFM32PG1_lfrco_cal_polled.xml │ │ ├── EFM32TG11_lfrco_cal_polled.xml │ │ ├── EFR32BG12_lfrco_cal_polled.xml │ │ ├── EFR32BG13_lfrco_cal_polled.xml │ │ ├── EFR32BG1_lfrco_cal_polled.xml │ │ ├── EFR32FG12_lfrco_cal_polled.xml │ │ ├── EFR32FG13_lfrco_cal_polled.xml │ │ ├── EFR32FG14_lfrco_cal_polled.xml │ │ ├── EFR32FG1_lfrco_cal_polled.xml │ │ ├── EFR32MG12_lfrco_cal_polled.xml │ │ ├── EFR32MG13_lfrco_cal_polled.xml │ │ └── EFR32MG1_lfrco_cal_polled.xml │ │ ├── iar │ │ ├── EFM32GG11_lfrco_cal_polled.ewd │ │ ├── EFM32GG11_lfrco_cal_polled.ewp │ │ ├── EFM32PG12_lfrco_cal_polled.ewd │ │ ├── EFM32PG12_lfrco_cal_polled.ewp │ │ ├── EFM32PG1_lfrco_cal_polled.ewd │ │ ├── EFM32PG1_lfrco_cal_polled.ewp │ │ ├── EFM32TG11_lfrco_cal_polled.ewd │ │ ├── EFM32TG11_lfrco_cal_polled.ewp │ │ ├── EFR32BG12_lfrco_cal_polled.ewd │ │ ├── EFR32BG12_lfrco_cal_polled.ewp │ │ ├── EFR32BG13_lfrco_cal_polled.ewd │ │ ├── EFR32BG13_lfrco_cal_polled.ewp │ │ ├── EFR32BG1_lfrco_cal_polled.ewd │ │ ├── EFR32BG1_lfrco_cal_polled.ewp │ │ ├── EFR32FG12_lfrco_cal_polled.ewd │ │ ├── EFR32FG12_lfrco_cal_polled.ewp │ │ ├── EFR32FG13_lfrco_cal_polled.ewd │ │ ├── EFR32FG13_lfrco_cal_polled.ewp │ │ ├── EFR32FG14_lfrco_cal_polled.ewd │ │ ├── EFR32FG14_lfrco_cal_polled.ewp │ │ ├── EFR32FG1_lfrco_cal_polled.ewd │ │ ├── EFR32FG1_lfrco_cal_polled.ewp │ │ ├── EFR32MG12_lfrco_cal_polled.ewd │ │ ├── EFR32MG12_lfrco_cal_polled.ewp │ │ ├── EFR32MG13_lfrco_cal_polled.ewd │ │ ├── EFR32MG13_lfrco_cal_polled.ewp │ │ ├── EFR32MG1_lfrco_cal_polled.ewd │ │ ├── EFR32MG1_lfrco_cal_polled.ewp │ │ └── lfrco_cal_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_efr32_efm32jg_pg.c │ │ └── main_tg_gg.c ├── core │ └── dsp_lib_fft │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_dsp_lib_fft.slsproj │ │ ├── BRD4103A_EFR32BG12P_dsp_lib_fft.slsproj │ │ ├── BRD4151A_EFR32MG1P_dsp_lib_fft.slsproj │ │ ├── BRD4161A_EFR32MG12P_dsp_lib_fft.slsproj │ │ ├── BRD4250A_EFR32FG1P_dsp_lib_fft.slsproj │ │ ├── BRD4253A_EFR32FG12P_dsp_lib_fft.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_dsp_lib_fft.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_dsp_lib_fft.slsproj │ │ └── SLSTK3701A_EFM32GG11B_dsp_lib_fft.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_dsp_lib_fft.xml │ │ ├── EFM32PG12B_dsp_lib_fft.xml │ │ ├── EFM32PG1B_dsp_lib_fft.xml │ │ ├── EFR32BG12P_dsp_lib_fft.xml │ │ ├── EFR32BG1P_dsp_lib_fft.xml │ │ ├── EFR32FG12P_dsp_lib_fft.xml │ │ ├── EFR32FG1P_dsp_lib_fft.xml │ │ ├── EFR32MG12P_dsp_lib_fft.xml │ │ └── EFR32MG1P_dsp_lib_fft.xml │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── cryotimer │ ├── cryotimer_lfxo_em4_no_ret │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_cryotimer_lfxo_em4_no_ret.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_cryotimer_lfxo_em4_no_ret.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFM32PG12B_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFM32PG1B_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFM32TG11B_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32BG12P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32BG13P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32BG1P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32FG12P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32FG13P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32FG14P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32FG1P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32MG12P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32MG13P_cryotimer_lfxo_em4_no_ret.xml │ │ │ ├── EFR32MG14P_cryotimer_lfxo_em4_no_ret.xml │ │ │ └── EFR32MG1P_cryotimer_lfxo_em4_no_ret.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFM32GG11B_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFM32PG12B_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFM32PG12B_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFM32PG1B_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFM32PG1B_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFM32TG11B_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFM32TG11B_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32BG12P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32BG12P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32BG13P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32BG13P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32BG1P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32BG1P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32FG12P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32FG12P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32FG13P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32FG13P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32FG14P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32FG14P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32FG1P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32FG1P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32MG12P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32MG12P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32MG13P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32MG13P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32MG14P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32MG14P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ ├── EFR32MG1P_cryotimer_lfxo_em4_no_ret.ewd │ │ │ ├── EFR32MG1P_cryotimer_lfxo_em4_no_ret.ewp │ │ │ └── cryotimer_lfxo_em4_no_ret.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ ├── cryotimer_lfxo_ret_em4exit │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_cryotimer_lfxo_ret_em4exit.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_cryotimer_lfxo_ret_em4exit.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFM32PG12B_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFM32PG1B_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFM32TG11B_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32BG12P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32BG13P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32BG1P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32FG12P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32FG13P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32FG14P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32FG1P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32MG12P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32MG13P_cryotimer_lfxo_ret_em4exit.xml │ │ │ ├── EFR32MG14P_cryotimer_lfxo_ret_em4exit.xml │ │ │ └── EFR32MG1P_cryotimer_lfxo_ret_em4exit.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFM32GG11B_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFM32PG12B_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFM32PG12B_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFM32PG1B_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFM32PG1B_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFM32TG11B_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFM32TG11B_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32BG12P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32BG12P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32BG13P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32BG13P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32BG1P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32BG1P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32FG12P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32FG12P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32FG13P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32FG13P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32FG14P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32FG14P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32FG1P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32FG1P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32MG12P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32MG12P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32MG13P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32MG13P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32MG14P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32MG14P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ ├── EFR32MG1P_cryotimer_lfxo_ret_em4exit.ewd │ │ │ ├── EFR32MG1P_cryotimer_lfxo_ret_em4exit.ewp │ │ │ └── cryotimer_lfxo_ret_em4exit.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ ├── cryotimer_ulfrco_em123 │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_cryotimer_ulfrco_em123.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_cryotimer_ulfrco_em123.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_cryotimer_ulfrco_em123.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_cryotimer_ulfrco_em123.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_cryotimer_ulfrco_em123.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em123.xml │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em123.xml │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em123.xml │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em123.xml │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em123.xml │ │ │ └── EFR32MG1P_cryotimer_ulfrco_em123.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em123.ewp │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_em123.ewd │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_em123.ewp │ │ │ └── cryotimer_ulfrco_em123.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── cryotimer_ulfrco_em4_no_ret │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_cryotimer_ulfrco_em4_no_ret.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_cryotimer_ulfrco_em4_no_ret.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em4_no_ret.xml │ │ │ └── EFR32MG1P_cryotimer_ulfrco_em4_no_ret.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_em4_no_ret.ewd │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_em4_no_ret.ewp │ │ │ └── cryotimer_ulfrco_em4_no_ret.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ ├── cryotimer_ulfrco_ret_em4exit │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_cryotimer_ulfrco_ret_em4exit.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_cryotimer_ulfrco_ret_em4exit.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_ret_em4exit.xml │ │ │ └── EFR32MG1P_cryotimer_ulfrco_ret_em4exit.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFM32GG11B_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFM32PG12B_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFM32PG1B_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFM32TG11B_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32BG12P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32BG13P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32BG1P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32FG12P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32FG13P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32FG14P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32FG1P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32MG12P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32MG13P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32MG14P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_ret_em4exit.ewd │ │ │ ├── EFR32MG1P_cryotimer_ulfrco_ret_em4exit.ewp │ │ │ └── cryotimer_ulfrco_ret_em4exit.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ └── cryotimer_wakeup_msc_erase │ │ ├── SimplicityStudio │ │ └── SLSTK3402A_EFM32PG12B_cryotimer_wakeup_msc_erase.slsproj │ │ ├── doc │ │ └── EFM32PG12B_cryotimer_wakeup_msc_erase.xml │ │ ├── iar │ │ ├── EFM32PG12B_cryotimer_wakeup_msc_erase.ewd │ │ ├── EFM32PG12B_cryotimer_wakeup_msc_erase.ewp │ │ └── cryotimer_wakeup_msc_erase.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── emu │ └── voltage_scaling │ │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_voltage_scaling.slsproj │ │ ├── BRD4104A_EFR32BG13P_voltage_scaling.slsproj │ │ ├── BRD4159A_EFR32MG13P_voltage_scaling.slsproj │ │ ├── BRD4161A_EFR32MG12P_voltage_scaling.slsproj │ │ ├── BRD4169A_EFR32MG14P_voltage_scaling.slsproj │ │ ├── BRD4253A_EFR32FG12P_voltage_scaling.slsproj │ │ ├── BRD4256A_EFR32FG13P_voltage_scaling.slsproj │ │ ├── BRD4257A_EFR32FG14P_voltage_scaling.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_voltage_scaling.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_voltage_scaling.slsproj │ │ └── SLSTK3701A_EFM32GG11B_voltage_scaling.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_voltage_scaling.xml │ │ ├── EFM32PG12B_voltage_scaling.xml │ │ ├── EFM32TG11B_voltage_scaling.xml │ │ ├── EFR32BG12P_voltage_scaling.xml │ │ ├── EFR32BG13P_voltage_scaling.xml │ │ ├── EFR32FG12P_voltage_scaling.xml │ │ ├── EFR32FG13P_voltage_scaling.xml │ │ ├── EFR32FG14P_voltage_scaling.xml │ │ ├── EFR32MG12P_voltage_scaling.xml │ │ ├── EFR32MG13P_voltage_scaling.xml │ │ └── EFR32MG14P_voltage_scaling.xml │ │ ├── iar │ │ ├── EFM32GG11B_voltage_scaling.ewd │ │ ├── EFM32GG11B_voltage_scaling.ewp │ │ ├── EFM32PG12B_voltage_scaling.ewd │ │ ├── EFM32PG12B_voltage_scaling.ewp │ │ ├── EFM32TG11B_voltage_scaling.ewd │ │ ├── EFM32TG11B_voltage_scaling.ewp │ │ ├── EFR32BG12P_voltage_scaling.ewd │ │ ├── EFR32BG12P_voltage_scaling.ewp │ │ ├── EFR32BG13P_voltage_scaling.ewd │ │ ├── EFR32BG13P_voltage_scaling.ewp │ │ ├── EFR32FG12P_voltage_scaling.ewd │ │ ├── EFR32FG12P_voltage_scaling.ewp │ │ ├── EFR32FG13P_voltage_scaling.ewd │ │ ├── EFR32FG13P_voltage_scaling.ewp │ │ ├── EFR32FG14P_voltage_scaling.ewd │ │ ├── EFR32FG14P_voltage_scaling.ewp │ │ ├── EFR32MG12P_voltage_scaling.ewd │ │ ├── EFR32MG12P_voltage_scaling.ewp │ │ ├── EFR32MG13P_voltage_scaling.ewd │ │ ├── EFR32MG13P_voltage_scaling.ewp │ │ ├── EFR32MG14P_voltage_scaling.ewd │ │ ├── EFR32MG14P_voltage_scaling.ewp │ │ └── voltage_scaling.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── gpcrc │ ├── gpcrc_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_gpcrc_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_gpcrc_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_gpcrc_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_gpcrc_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_gpcrc_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_gpcrc_dma.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_gpcrc_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_gpcrc_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_gpcrc_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_gpcrc_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_gpcrc_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_gpcrc_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_gpcrc_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_gpcrc_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_gpcrc_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_gpcrc_dma.xml │ │ │ ├── EFM32PG12B_gpcrc_dma.xml │ │ │ ├── EFM32PG1B_gpcrc_dma.xml │ │ │ ├── EFM32TG11B_gpcrc_dma.xml │ │ │ ├── EFR32BG12P_gpcrc_dma.xml │ │ │ ├── EFR32BG13P_gpcrc_dma.xml │ │ │ ├── EFR32BG1P_gpcrc_dma.xml │ │ │ ├── EFR32FG12P_gpcrc_dma.xml │ │ │ ├── EFR32FG13P_gpcrc_dma.xml │ │ │ ├── EFR32FG14P_gpcrc_dma.xml │ │ │ ├── EFR32FG1P_gpcrc_dma.xml │ │ │ ├── EFR32MG12P_gpcrc_dma.xml │ │ │ ├── EFR32MG13P_gpcrc_dma.xml │ │ │ ├── EFR32MG14P_gpcrc_dma.xml │ │ │ └── EFR32MG1P_gpcrc_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_gpcrc_dma.ewd │ │ │ ├── EFM32GG11B_gpcrc_dma.ewp │ │ │ ├── EFM32PG12B_gpcrc_dma.ewd │ │ │ ├── EFM32PG12B_gpcrc_dma.ewp │ │ │ ├── EFM32PG1B_gpcrc_dma.ewd │ │ │ ├── EFM32PG1B_gpcrc_dma.ewp │ │ │ ├── EFM32TG11B_gpcrc_dma.ewd │ │ │ ├── EFM32TG11B_gpcrc_dma.ewp │ │ │ ├── EFR32BG12P_gpcrc_dma.ewd │ │ │ ├── EFR32BG12P_gpcrc_dma.ewp │ │ │ ├── EFR32BG13P_gpcrc_dma.ewd │ │ │ ├── EFR32BG13P_gpcrc_dma.ewp │ │ │ ├── EFR32BG1P_gpcrc_dma.ewd │ │ │ ├── EFR32BG1P_gpcrc_dma.ewp │ │ │ ├── EFR32FG12P_gpcrc_dma.ewd │ │ │ ├── EFR32FG12P_gpcrc_dma.ewp │ │ │ ├── EFR32FG13P_gpcrc_dma.ewd │ │ │ ├── EFR32FG13P_gpcrc_dma.ewp │ │ │ ├── EFR32FG14P_gpcrc_dma.ewd │ │ │ ├── EFR32FG14P_gpcrc_dma.ewp │ │ │ ├── EFR32FG1P_gpcrc_dma.ewd │ │ │ ├── EFR32FG1P_gpcrc_dma.ewp │ │ │ ├── EFR32MG12P_gpcrc_dma.ewd │ │ │ ├── EFR32MG12P_gpcrc_dma.ewp │ │ │ ├── EFR32MG13P_gpcrc_dma.ewd │ │ │ ├── EFR32MG13P_gpcrc_dma.ewp │ │ │ ├── EFR32MG14P_gpcrc_dma.ewd │ │ │ ├── EFR32MG14P_gpcrc_dma.ewp │ │ │ ├── EFR32MG1P_gpcrc_dma.ewd │ │ │ ├── EFR32MG1P_gpcrc_dma.ewp │ │ │ └── gpcrc_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── gpcrc_software │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_gpcrc_software.slsproj │ │ ├── BRD4103A_EFR32BG12P_gpcrc_software.slsproj │ │ ├── BRD4104A_EFR32BG13P_gpcrc_software.slsproj │ │ ├── BRD4151A_EFR32MG1P_gpcrc_software.slsproj │ │ ├── BRD4159A_EFR32MG13P_gpcrc_software.slsproj │ │ ├── BRD4161A_EFR32MG12P_gpcrc_software.slsproj │ │ ├── BRD4169A_EFR32MG14P_gpcrc_software.slsproj │ │ ├── BRD4250A_EFR32FG1P_gpcrc_software.slsproj │ │ ├── BRD4253A_EFR32FG12P_gpcrc_software.slsproj │ │ ├── BRD4256A_EFR32FG13P_gpcrc_software.slsproj │ │ ├── BRD4257A_EFR32FG14P_gpcrc_software.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_gpcrc_software.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_gpcrc_software.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_gpcrc_software.slsproj │ │ └── SLSTK3701A_EFM32GG11B_gpcrc_software.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_gpcrc_software.xml │ │ ├── EFM32PG12B_gpcrc_software.xml │ │ ├── EFM32PG1B_gpcrc_software.xml │ │ ├── EFM32TG11B_gpcrc_software.xml │ │ ├── EFR32BG12P_gpcrc_software.xml │ │ ├── EFR32BG13P_gpcrc_software.xml │ │ ├── EFR32BG1P_gpcrc_software.xml │ │ ├── EFR32FG12P_gpcrc_software.xml │ │ ├── EFR32FG13P_gpcrc_software.xml │ │ ├── EFR32FG14P_gpcrc_software.xml │ │ ├── EFR32FG1P_gpcrc_software.xml │ │ ├── EFR32MG12P_gpcrc_software.xml │ │ ├── EFR32MG13P_gpcrc_software.xml │ │ ├── EFR32MG14P_gpcrc_software.xml │ │ └── EFR32MG1P_gpcrc_software.xml │ │ ├── iar │ │ ├── EFM32GG11B_gpcrc_software.ewd │ │ ├── EFM32GG11B_gpcrc_software.ewp │ │ ├── EFM32PG12B_gpcrc_software.ewd │ │ ├── EFM32PG12B_gpcrc_software.ewp │ │ ├── EFM32PG1B_gpcrc_software.ewd │ │ ├── EFM32PG1B_gpcrc_software.ewp │ │ ├── EFM32TG11B_gpcrc_software.ewd │ │ ├── EFM32TG11B_gpcrc_software.ewp │ │ ├── EFR32BG12P_gpcrc_software.ewd │ │ ├── EFR32BG12P_gpcrc_software.ewp │ │ ├── EFR32BG13P_gpcrc_software.ewd │ │ ├── EFR32BG13P_gpcrc_software.ewp │ │ ├── EFR32BG1P_gpcrc_software.ewd │ │ ├── EFR32BG1P_gpcrc_software.ewp │ │ ├── EFR32FG12P_gpcrc_software.ewd │ │ ├── EFR32FG12P_gpcrc_software.ewp │ │ ├── EFR32FG13P_gpcrc_software.ewd │ │ ├── EFR32FG13P_gpcrc_software.ewp │ │ ├── EFR32FG14P_gpcrc_software.ewd │ │ ├── EFR32FG14P_gpcrc_software.ewp │ │ ├── EFR32FG1P_gpcrc_software.ewd │ │ ├── EFR32FG1P_gpcrc_software.ewp │ │ ├── EFR32MG12P_gpcrc_software.ewd │ │ ├── EFR32MG12P_gpcrc_software.ewp │ │ ├── EFR32MG13P_gpcrc_software.ewd │ │ ├── EFR32MG13P_gpcrc_software.ewp │ │ ├── EFR32MG14P_gpcrc_software.ewd │ │ ├── EFR32MG14P_gpcrc_software.ewp │ │ ├── EFR32MG1P_gpcrc_software.ewd │ │ ├── EFR32MG1P_gpcrc_software.ewp │ │ └── gpcrc_software.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── gpio │ ├── EM4_WakeUp │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_EM4_WakeUp.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_EM4_WakeUp.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_EM4_WakeUp.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_EM4_WakeUp.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_EM4_WakeUp.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_EM4_WakeUp.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_EM4_WakeUp.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_EM4_WakeUp.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_EM4_WakeUp.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_EM4_WakeUp.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_EM4_WakeUp.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_EM4_WakeUp.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_EM4_WakeUp.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_EM4_WakeUp.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_EM4_WakeUp.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_EM4_WakeUp.xml │ │ │ ├── EFM32PG12B_EM4_WakeUp.xml │ │ │ ├── EFM32PG1B_EM4_WakeUp.xml │ │ │ ├── EFM32TG11_EM4_WakeUp.xml │ │ │ ├── EFR32BG12P_EM4_WakeUp.xml │ │ │ ├── EFR32BG13P_EM4_WakeUp.xml │ │ │ ├── EFR32BG1P_EM4_WakeUp.xml │ │ │ ├── EFR32FG12P_EM4_WakeUp.xml │ │ │ ├── EFR32FG13P_EM4_WakeUp.xml │ │ │ ├── EFR32FG14P_EM4_WakeUp.xml │ │ │ ├── EFR32FG1P_EM4_WakeUp.xml │ │ │ ├── EFR32MG12P_EM4_WakeUp.xml │ │ │ ├── EFR32MG13P_EM4_WakeUp.xml │ │ │ ├── EFR32MG14P_EM4_WakeUp.xml │ │ │ └── EFR32MG1P_EM4_WakeUp.xml │ │ ├── iar │ │ │ ├── EFM32GG11_EM4_WakeUp.ewd │ │ │ ├── EFM32GG11_EM4_WakeUp.ewp │ │ │ ├── EFM32PG12B_EM4_WakeUp.ewd │ │ │ ├── EFM32PG12B_EM4_WakeUp.ewp │ │ │ ├── EFM32PG1B_EM4_WakeUp.ewd │ │ │ ├── EFM32PG1B_EM4_WakeUp.ewp │ │ │ ├── EFM32TG11_EM4_WakeUp.ewd │ │ │ ├── EFM32TG11_EM4_WakeUp.ewp │ │ │ ├── EFR32BG12P_EM4_WakeUp.ewd │ │ │ ├── EFR32BG12P_EM4_WakeUp.ewp │ │ │ ├── EFR32BG13P_EM4_WakeUp.ewd │ │ │ ├── EFR32BG13P_EM4_WakeUp.ewp │ │ │ ├── EFR32BG1P_EM4_WakeUp.ewd │ │ │ ├── EFR32BG1P_EM4_WakeUp.ewp │ │ │ ├── EFR32FG12P_EM4_WakeUp.ewd │ │ │ ├── EFR32FG12P_EM4_WakeUp.ewp │ │ │ ├── EFR32FG13P_EM4_WakeUp.ewd │ │ │ ├── EFR32FG13P_EM4_WakeUp.ewp │ │ │ ├── EFR32FG14P_EM4_WakeUp.ewd │ │ │ ├── EFR32FG14P_EM4_WakeUp.ewp │ │ │ ├── EFR32FG1P_EM4_WakeUp.ewd │ │ │ ├── EFR32FG1P_EM4_WakeUp.ewp │ │ │ ├── EFR32MG12P_EM4_WakeUp.ewd │ │ │ ├── EFR32MG12P_EM4_WakeUp.ewp │ │ │ ├── EFR32MG13P_EM4_WakeUp.ewd │ │ │ ├── EFR32MG13P_EM4_WakeUp.ewp │ │ │ ├── EFR32MG14P_EM4_WakeUp.ewd │ │ │ ├── EFR32MG14P_EM4_WakeUp.ewp │ │ │ ├── EFR32MG1P_EM4_WakeUp.ewd │ │ │ ├── EFR32MG1P_EM4_WakeUp.ewp │ │ │ └── EM4_WakeUp.eww │ │ ├── readme_s1.txt │ │ └── src │ │ │ ├── main_efr32.c │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_pg.c │ ├── gpio_periph │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_gpio_periph_bg1p.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_gpio_periph_bg12p.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_gpio_periph_bg13p.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_gpio_periph_mg1p.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_gpio_periph_mg13p.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_gpio_periph_mg12p.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_gpio_periph_mg14p.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_gpio_periph_fg1p.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_gpio_periph_fg12p.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_gpio_periph_fg13p.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_gpio_periph_fg14p.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_gpio_periph_tg11b.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_gpio_periph_pg1b.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_gpio_periph_pg12b.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_gpio_periph_gg11b.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_gpio_periph_gg11b.xml │ │ │ ├── EFM32PG12B_gpio_periph_pg12b.xml │ │ │ ├── EFM32PG1B_gpio_periph_pg1b.xml │ │ │ ├── EFM32TG11B_gpio_periph_tg11b.xml │ │ │ ├── EFR32BG12P_gpio_periph_bg12p.xml │ │ │ ├── EFR32BG13P_gpio_periph_bg13p.xml │ │ │ ├── EFR32BG1P_gpio_periph_bg1p.xml │ │ │ ├── EFR32FG12P_gpio_periph_fg12p.xml │ │ │ ├── EFR32FG13P_gpio_periph_fg13p.xml │ │ │ ├── EFR32FG14P_gpio_periph_fg14p.xml │ │ │ ├── EFR32FG1P_gpio_periph_fg1p.xml │ │ │ ├── EFR32MG12P_gpio_periph_mg12p.xml │ │ │ ├── EFR32MG13P_gpio_periph_mg13p.xml │ │ │ ├── EFR32MG14P_gpio_periph_mg14p.xml │ │ │ └── EFR32MG1P_gpio_periph_mg1p.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_gpio_periph_gg11b.ewd │ │ │ ├── EFM32GG11B_gpio_periph_gg11b.ewp │ │ │ ├── EFM32PG12B_gpio_periph_pg12b.ewd │ │ │ ├── EFM32PG12B_gpio_periph_pg12b.ewp │ │ │ ├── EFM32PG1B_gpio_periph_pg1b.ewd │ │ │ ├── EFM32PG1B_gpio_periph_pg1b.ewp │ │ │ ├── EFM32TG11B_gpio_periph_tg11b.ewd │ │ │ ├── EFM32TG11B_gpio_periph_tg11b.ewp │ │ │ ├── EFR32BG12P_gpio_periph_bg12p.ewd │ │ │ ├── EFR32BG12P_gpio_periph_bg12p.ewp │ │ │ ├── EFR32BG13P_gpio_periph_bg13p.ewd │ │ │ ├── EFR32BG13P_gpio_periph_bg13p.ewp │ │ │ ├── EFR32BG1P_gpio_periph_bg1p.ewd │ │ │ ├── EFR32BG1P_gpio_periph_bg1p.ewp │ │ │ ├── EFR32FG12P_gpio_periph_fg12p.ewd │ │ │ ├── EFR32FG12P_gpio_periph_fg12p.ewp │ │ │ ├── EFR32FG13P_gpio_periph_fg13p.ewd │ │ │ ├── EFR32FG13P_gpio_periph_fg13p.ewp │ │ │ ├── EFR32FG14P_gpio_periph_fg14p.ewd │ │ │ ├── EFR32FG14P_gpio_periph_fg14p.ewp │ │ │ ├── EFR32FG1P_gpio_periph_fg1p.ewd │ │ │ ├── EFR32FG1P_gpio_periph_fg1p.ewp │ │ │ ├── EFR32MG12P_gpio_periph_mg12p.ewd │ │ │ ├── EFR32MG12P_gpio_periph_mg12p.ewp │ │ │ ├── EFR32MG13P_gpio_periph_mg13p.ewd │ │ │ ├── EFR32MG13P_gpio_periph_mg13p.ewp │ │ │ ├── EFR32MG14P_gpio_periph_mg14p.ewd │ │ │ ├── EFR32MG14P_gpio_periph_mg14p.ewp │ │ │ ├── EFR32MG1P_gpio_periph_mg1p.ewd │ │ │ ├── EFR32MG1P_gpio_periph_mg1p.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_gpio_periph_s1.c │ ├── gpio_prs │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_gpio_prs_bg1p.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_gpio_prs_bg12p.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_gpio_prs_bg13p.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_gpio_prs_mg1p.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_gpio_prs_mg13p.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_gpio_prs_mg12p.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_gpio_prs_mg14p.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_gpio_prs_fg1p.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_gpio_prs_fg12p.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_gpio_prs_fg13p.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_gpio_prs_fg14p.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_gpio_prs_tg11b.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_gpio_prs_pg1b.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_gpio_prs_pg12b.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_gpio_prs_gg11b.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_gpio_prs_gg11b.xml │ │ │ ├── EFM32PG12B_gpio_prs_pg12b.xml │ │ │ ├── EFM32PG1B_gpio_prs_pg1b.xml │ │ │ ├── EFM32TG11B_gpio_prs_tg11b.xml │ │ │ ├── EFR32BG12P_gpio_prs_bg12p.xml │ │ │ ├── EFR32BG13P_gpio_prs_bg13p.xml │ │ │ ├── EFR32BG1P_gpio_prs_bg1p.xml │ │ │ ├── EFR32FG12P_gpio_prs_fg12p.xml │ │ │ ├── EFR32FG13P_gpio_prs_fg13p.xml │ │ │ ├── EFR32FG14P_gpio_prs_fg14p.xml │ │ │ ├── EFR32FG1P_gpio_prs_fg1p.xml │ │ │ ├── EFR32MG12P_gpio_prs_mg12p.xml │ │ │ ├── EFR32MG13P_gpio_prs_mg13p.xml │ │ │ ├── EFR32MG14P_gpio_prs_mg14p.xml │ │ │ └── EFR32MG1P_gpio_prs_mg1p.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_gpio_prs_gg11b.ewd │ │ │ ├── EFM32GG11B_gpio_prs_gg11b.ewp │ │ │ ├── EFM32PG12B_gpio_prs_pg12b.ewd │ │ │ ├── EFM32PG12B_gpio_prs_pg12b.ewp │ │ │ ├── EFM32PG1B_gpio_prs_pg1b.ewd │ │ │ ├── EFM32PG1B_gpio_prs_pg1b.ewp │ │ │ ├── EFM32TG11B_gpio_prs_tg11b.ewd │ │ │ ├── EFM32TG11B_gpio_prs_tg11b.ewp │ │ │ ├── EFR32BG12P_gpio_prs_bg12p.ewd │ │ │ ├── EFR32BG12P_gpio_prs_bg12p.ewp │ │ │ ├── EFR32BG13P_gpio_prs_bg13p.ewd │ │ │ ├── EFR32BG13P_gpio_prs_bg13p.ewp │ │ │ ├── EFR32BG1P_gpio_prs_bg1p.ewd │ │ │ ├── EFR32BG1P_gpio_prs_bg1p.ewp │ │ │ ├── EFR32FG12P_gpio_prs_fg12p.ewd │ │ │ ├── EFR32FG12P_gpio_prs_fg12p.ewp │ │ │ ├── EFR32FG13P_gpio_prs_fg13p.ewd │ │ │ ├── EFR32FG13P_gpio_prs_fg13p.ewp │ │ │ ├── EFR32FG14P_gpio_prs_fg14p.ewd │ │ │ ├── EFR32FG14P_gpio_prs_fg14p.ewp │ │ │ ├── EFR32FG1P_gpio_prs_fg1p.ewd │ │ │ ├── EFR32FG1P_gpio_prs_fg1p.ewp │ │ │ ├── EFR32MG12P_gpio_prs_mg12p.ewd │ │ │ ├── EFR32MG12P_gpio_prs_mg12p.ewp │ │ │ ├── EFR32MG13P_gpio_prs_mg13p.ewd │ │ │ ├── EFR32MG13P_gpio_prs_mg13p.ewp │ │ │ ├── EFR32MG14P_gpio_prs_mg14p.ewd │ │ │ ├── EFR32MG14P_gpio_prs_mg14p.ewp │ │ │ ├── EFR32MG1P_gpio_prs_mg1p.ewd │ │ │ ├── EFR32MG1P_gpio_prs_mg1p.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_gpio_prs.c │ ├── gpio_slew_rate │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_gpio_slew_rate_bg1p.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_gpio_slew_rate_bg12p.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_gpio_slew_rate_bg13p.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_gpio_slew_rate_mg1p.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_gpio_slew_rate_mg13p.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_gpio_slew_rate_mg12p.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_gpio_slew_rate_mg14p.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_gpio_slew_rate_fg1p.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_gpio_slew_rate_fg12p.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_gpio_slew_rate_fg13p.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_gpio_slew_rate_fg14p.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_gpio_slew_rate_tg11b.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_gpio_slew_rate_pg1b.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_gpio_slew_rate_pg12b.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_gpio_slew_rate_gg11b.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_slew_rate_gg11b.xml │ │ │ ├── EFM32PG12B_slew_rate_pg12b.xml │ │ │ ├── EFM32PG1B_slew_rate_pg1b.xml │ │ │ ├── EFM32TG11B_slew_rate_tg11b.xml │ │ │ ├── EFR32BG12P_slew_rate_bg12p.xml │ │ │ ├── EFR32BG13P_slew_rate_bg13p.xml │ │ │ ├── EFR32BG1P_slew_rate_bg1p.xml │ │ │ ├── EFR32FG12P_slew_rate_fg12p.xml │ │ │ ├── EFR32FG13P_slew_rate_fg13p.xml │ │ │ ├── EFR32FG14P_slew_rate_fg14p.xml │ │ │ ├── EFR32FG1P_slew_rate_fg1p.xml │ │ │ ├── EFR32MG12P_slew_rate_mg12p.xml │ │ │ ├── EFR32MG13P_slew_rate_mg13p.xml │ │ │ ├── EFR32MG14P_slew_rate_mg14p.xml │ │ │ └── EFR32MG1P_slew_rate_mg1p.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_gpio_slew_rate_gg11b.ewd │ │ │ ├── EFM32GG11B_gpio_slew_rate_gg11b.ewp │ │ │ ├── EFM32PG12B_gpio_slew_rate_pg12b.ewd │ │ │ ├── EFM32PG12B_gpio_slew_rate_pg12b.ewp │ │ │ ├── EFM32PG1B_gpio_slew_rate_pg1b.ewd │ │ │ ├── EFM32PG1B_gpio_slew_rate_pg1b.ewp │ │ │ ├── EFM32TG11B_gpio_slew_rate_tg11b.ewd │ │ │ ├── EFM32TG11B_gpio_slew_rate_tg11b.ewp │ │ │ ├── EFR32BG12P_gpio_slew_rate_bg12p.ewd │ │ │ ├── EFR32BG12P_gpio_slew_rate_bg12p.ewp │ │ │ ├── EFR32BG13P_gpio_slew_rate_bg13p.ewd │ │ │ ├── EFR32BG13P_gpio_slew_rate_bg13p.ewp │ │ │ ├── EFR32BG1P_gpio_slew_rate_bg1p.ewd │ │ │ ├── EFR32BG1P_gpio_slew_rate_bg1p.ewp │ │ │ ├── EFR32FG12P_gpio_slew_rate_fg12p.ewd │ │ │ ├── EFR32FG12P_gpio_slew_rate_fg12p.ewp │ │ │ ├── EFR32FG13P_gpio_slew_rate_fg13p.ewd │ │ │ ├── EFR32FG13P_gpio_slew_rate_fg13p.ewp │ │ │ ├── EFR32FG14P_gpio_slew_rate_fg14p.ewd │ │ │ ├── EFR32FG14P_gpio_slew_rate_fg14p.ewp │ │ │ ├── EFR32FG1P_gpio_slew_rate_fg1p.ewd │ │ │ ├── EFR32FG1P_gpio_slew_rate_fg1p.ewp │ │ │ ├── EFR32MG12P_gpio_slew_rate_mg12p.ewd │ │ │ ├── EFR32MG12P_gpio_slew_rate_mg12p.ewp │ │ │ ├── EFR32MG13P_gpio_slew_rate_mg13p.ewd │ │ │ ├── EFR32MG13P_gpio_slew_rate_mg13p.ewp │ │ │ ├── EFR32MG14P_gpio_slew_rate_mg14p.ewd │ │ │ ├── EFR32MG14P_gpio_slew_rate_mg14p.ewp │ │ │ ├── EFR32MG1P_gpio_slew_rate_mg1p.ewd │ │ │ ├── EFR32MG1P_gpio_slew_rate_mg1p.ewp │ │ │ └── gpio.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_gpio_slew_rate.c │ ├── switch_led_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_switch_led_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_switch_led_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_switch_led_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_switch_led_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_switch_led_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_switch_led_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_switch_led_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_switch_led_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_switch_led_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_switch_led_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_switch_led_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_switch_led_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_switch_led_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_switch_led_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_switch_led_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_switch_led_interrupt.xml │ │ │ ├── EFM32PG12B_switch_led_interrupt.xml │ │ │ ├── EFM32PG1B_switch_led_interrupt.xml │ │ │ ├── EFM32TG11_switch_led_interrupt.xml │ │ │ ├── EFR32BG12P_switch_led_interrupt.xml │ │ │ ├── EFR32BG13P_switch_led_interrupt.xml │ │ │ ├── EFR32BG1P_switch_led_interrupt.xml │ │ │ ├── EFR32FG12P_switch_led_interrupt.xml │ │ │ ├── EFR32FG13P_switch_led_interrupt.xml │ │ │ ├── EFR32FG14P_switch_led_interrupt.xml │ │ │ ├── EFR32FG1P_switch_led_interrupt.xml │ │ │ ├── EFR32MG12P_switch_led_interrupt.xml │ │ │ ├── EFR32MG13P_switch_led_interrupt.xml │ │ │ ├── EFR32MG14P_switch_led_interrupt.xml │ │ │ └── EFR32MG1P_switch_led_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_switch_led_interrupt.ewd │ │ │ ├── EFM32GG11_switch_led_interrupt.ewp │ │ │ ├── EFM32PG12B_switch_led_interrupt.ewd │ │ │ ├── EFM32PG12B_switch_led_interrupt.ewp │ │ │ ├── EFM32PG1B_switch_led_interrupt.ewd │ │ │ ├── EFM32PG1B_switch_led_interrupt.ewp │ │ │ ├── EFM32TG11_switch_led_interrupt.ewd │ │ │ ├── EFM32TG11_switch_led_interrupt.ewp │ │ │ ├── EFR32BG12P_switch_led_interrupt.ewd │ │ │ ├── EFR32BG12P_switch_led_interrupt.ewp │ │ │ ├── EFR32BG13P_switch_led_interrupt.ewd │ │ │ ├── EFR32BG13P_switch_led_interrupt.ewp │ │ │ ├── EFR32BG1P_switch_led_interrupt.ewd │ │ │ ├── EFR32BG1P_switch_led_interrupt.ewp │ │ │ ├── EFR32FG12P_switch_led_interrupt.ewd │ │ │ ├── EFR32FG12P_switch_led_interrupt.ewp │ │ │ ├── EFR32FG13P_switch_led_interrupt.ewd │ │ │ ├── EFR32FG13P_switch_led_interrupt.ewp │ │ │ ├── EFR32FG14P_switch_led_interrupt.ewd │ │ │ ├── EFR32FG14P_switch_led_interrupt.ewp │ │ │ ├── EFR32FG1P_switch_led_interrupt.ewd │ │ │ ├── EFR32FG1P_switch_led_interrupt.ewp │ │ │ ├── EFR32MG12P_switch_led_interrupt.ewd │ │ │ ├── EFR32MG12P_switch_led_interrupt.ewp │ │ │ ├── EFR32MG13P_switch_led_interrupt.ewd │ │ │ ├── EFR32MG13P_switch_led_interrupt.ewp │ │ │ ├── EFR32MG14P_switch_led_interrupt.ewd │ │ │ ├── EFR32MG14P_switch_led_interrupt.ewp │ │ │ ├── EFR32MG1P_switch_led_interrupt.ewd │ │ │ ├── EFR32MG1P_switch_led_interrupt.ewp │ │ │ └── switch_led_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ └── switch_led_polled │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_switch_led_polled.slsproj │ │ ├── BRD4103A_EFR32BG12P_switch_led_polled.slsproj │ │ ├── BRD4104A_EFR32BG13_switch_led_polled.slsproj │ │ ├── BRD4151A_EFR32MG1P_switch_led_polled.slsproj │ │ ├── BRD4159A_EFR32MG13_switch_led_polled.slsproj │ │ ├── BRD4161A_EFR32MG12P_switch_led_polled.slsproj │ │ ├── BRD4169B_EFR32MG14_switch_led_polled.slsproj │ │ ├── BRD4250A_EFR32FG1P_switch_led_polled.slsproj │ │ ├── BRD4253A_EFR32FG12P_switch_led_polled.slsproj │ │ ├── BRD4256A_EFR32FG13_switch_led_polled.slsproj │ │ ├── BRD4257A_EFR32FG14_switch_led_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11_switch_led_polled.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_switch_led_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_switch_led_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11_switch_led_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG11_switch_led_polled.xml │ │ ├── EFM32PG12B_switch_led_polled.xml │ │ ├── EFM32PG1B_switch_led_polled.xml │ │ ├── EFM32TG11_switch_led_polled.xml │ │ ├── EFR32BG12P_switch_led_polled.xml │ │ ├── EFR32BG13_switch_led_polled.xml │ │ ├── EFR32BG1P_switch_led_polled.xml │ │ ├── EFR32FG12P_switch_led_polled.xml │ │ ├── EFR32FG13_switch_led_polled.xml │ │ ├── EFR32FG14_switch_led_polled.xml │ │ ├── EFR32FG1P_switch_led_polled.xml │ │ ├── EFR32MG12P_switch_led_polled.xml │ │ ├── EFR32MG13_switch_led_polled.xml │ │ ├── EFR32MG14_switch_led_polled.xml │ │ └── EFR32MG1P_switch_led_polled.xml │ │ ├── iar │ │ ├── EFM32GG11_switch_led_polled.ewd │ │ ├── EFM32GG11_switch_led_polled.ewp │ │ ├── EFM32PG12B_switch_led_polled.ewd │ │ ├── EFM32PG12B_switch_led_polled.ewp │ │ ├── EFM32PG1B_switch_led_polled.ewd │ │ ├── EFM32PG1B_switch_led_polled.ewp │ │ ├── EFM32TG11_switch_led_polled.ewd │ │ ├── EFM32TG11_switch_led_polled.ewp │ │ ├── EFR32BG12P_switch_led_polled.ewd │ │ ├── EFR32BG12P_switch_led_polled.ewp │ │ ├── EFR32BG13_switch_led_polled.ewd │ │ ├── EFR32BG13_switch_led_polled.ewp │ │ ├── EFR32BG1P_switch_led_polled.ewd │ │ ├── EFR32BG1P_switch_led_polled.ewp │ │ ├── EFR32FG12P_switch_led_polled.ewd │ │ ├── EFR32FG12P_switch_led_polled.ewp │ │ ├── EFR32FG13_switch_led_polled.ewd │ │ ├── EFR32FG13_switch_led_polled.ewp │ │ ├── EFR32FG14_switch_led_polled.ewd │ │ ├── EFR32FG14_switch_led_polled.ewp │ │ ├── EFR32FG1P_switch_led_polled.ewd │ │ ├── EFR32FG1P_switch_led_polled.ewp │ │ ├── EFR32MG12P_switch_led_polled.ewd │ │ ├── EFR32MG12P_switch_led_polled.ewp │ │ ├── EFR32MG13_switch_led_polled.ewd │ │ ├── EFR32MG13_switch_led_polled.ewp │ │ ├── EFR32MG14_switch_led_polled.ewd │ │ ├── EFR32MG14_switch_led_polled.ewp │ │ ├── EFR32MG1P_switch_led_polled.ewd │ │ ├── EFR32MG1P_switch_led_polled.ewp │ │ └── switch_led_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_gg11.c ├── i2c │ └── i2c │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_i2c.slsproj │ │ ├── BRD4103A_EFR32BG12P_i2c.slsproj │ │ ├── BRD4104A_EFR32BG13P_i2c.slsproj │ │ ├── BRD4151A_EFR32MG1P_i2c.slsproj │ │ ├── BRD4159A_EFR32MG13P_i2c.slsproj │ │ ├── BRD4161A_EFR32MG12P_i2c.slsproj │ │ ├── BRD4169B_EFR32MG14P_i2c.slsproj │ │ ├── BRD4250A_EFR32FG1P_i2c.slsproj │ │ ├── BRD4253A_EFR32FG12P_i2c.slsproj │ │ ├── BRD4256A_EFR32FG13P_i2c.slsproj │ │ ├── BRD4257A_EFR32FG14P_i2c.slsproj │ │ ├── SLSTK3301A_EFM32TG11_i2c.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_i2c.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_i2c.slsproj │ │ └── SLSTK3701A_EFM32GG11_i2c.slsproj │ │ ├── doc │ │ ├── EFM32GG11_i2c.xml │ │ ├── EFM32PG12B_i2c.xml │ │ ├── EFM32PG1B_i2c.xml │ │ ├── EFM32TG11_i2c.xml │ │ ├── EFR32BG12P_i2c.xml │ │ ├── EFR32BG13P_i2c.xml │ │ ├── EFR32BG1P_i2c.xml │ │ ├── EFR32FG12P_i2c.xml │ │ ├── EFR32FG13P_i2c.xml │ │ ├── EFR32FG14P_i2c.xml │ │ ├── EFR32FG1P_i2c.xml │ │ ├── EFR32MG12P_i2c.xml │ │ ├── EFR32MG13P_i2c.xml │ │ ├── EFR32MG14P_i2c.xml │ │ └── EFR32MG1P_i2c.xml │ │ ├── iar │ │ ├── EFM32GG11_i2c.ewd │ │ ├── EFM32GG11_i2c.ewp │ │ ├── EFM32PG12B_i2c.ewd │ │ ├── EFM32PG12B_i2c.ewp │ │ ├── EFM32PG1B_i2c.ewd │ │ ├── EFM32PG1B_i2c.ewp │ │ ├── EFM32TG11_i2c.ewd │ │ ├── EFM32TG11_i2c.ewp │ │ ├── EFR32BG12P_i2c.ewd │ │ ├── EFR32BG12P_i2c.ewp │ │ ├── EFR32BG13P_i2c.ewd │ │ ├── EFR32BG13P_i2c.ewp │ │ ├── EFR32BG1P_i2c.ewd │ │ ├── EFR32BG1P_i2c.ewp │ │ ├── EFR32FG12P_i2c.ewd │ │ ├── EFR32FG12P_i2c.ewp │ │ ├── EFR32FG13P_i2c.ewd │ │ ├── EFR32FG13P_i2c.ewp │ │ ├── EFR32FG14P_i2c.ewd │ │ ├── EFR32FG14P_i2c.ewp │ │ ├── EFR32FG1P_i2c.ewd │ │ ├── EFR32FG1P_i2c.ewp │ │ ├── EFR32MG12P_i2c.ewd │ │ ├── EFR32MG12P_i2c.ewp │ │ ├── EFR32MG13P_i2c.ewd │ │ ├── EFR32MG13P_i2c.ewp │ │ ├── EFR32MG14P_i2c.ewd │ │ ├── EFR32MG14P_i2c.ewp │ │ ├── EFR32MG1P_i2c.ewd │ │ ├── EFR32MG1P_i2c.ewp │ │ └── i2c.eww │ │ ├── readme_efr.txt │ │ ├── readme_gg11.txt │ │ ├── readme_pgxx.txt │ │ ├── readme_tg11.txt │ │ └── src │ │ ├── main_efr.c │ │ ├── main_gg11.c │ │ ├── main_pgxx.c │ │ └── main_tg11.c ├── i2s │ └── i2s │ │ ├── SimplicityStudio │ │ └── SLSTK3701A_EFM32GG11_i2s.slsproj │ │ ├── doc │ │ └── EFM32GG11_i2s.xml │ │ ├── iar │ │ ├── EFM32GG11_i2s.ewd │ │ ├── EFM32GG11_i2s.ewp │ │ └── i2s.eww │ │ ├── readme_gg11.txt │ │ └── src │ │ └── main_gg11.c ├── idac │ ├── idac_output_constant │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_idac_output_constant.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_idac_output_constant.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_idac_output_constant.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_idac_output_constant.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_idac_output_constant.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_idac_output_constant.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_idac_output_constant.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_idac_output_constant.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_idac_output_constant.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_idac_output_constant.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_idac_output_constant.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_idac_output_constant.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_idac_output_constant.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_idac_output_constant.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_idac_output_constant.xml │ │ │ ├── EFM32PG12B_idac_output_constant.xml │ │ │ ├── EFM32PG1B_idac_output_constant.xml │ │ │ ├── EFR32BG12P_idac_output_constant.xml │ │ │ ├── EFR32BG13P_idac_output_constant.xml │ │ │ ├── EFR32BG1P_idac_output_constant.xml │ │ │ ├── EFR32FG12P_idac_output_constant.xml │ │ │ ├── EFR32FG13P_idac_output_constant.xml │ │ │ ├── EFR32FG14P_idac_output_constant.xml │ │ │ ├── EFR32FG1P_idac_output_constant.xml │ │ │ ├── EFR32MG12P_idac_output_constant.xml │ │ │ ├── EFR32MG13P_idac_output_constant.xml │ │ │ ├── EFR32MG14P_idac_output_constant.xml │ │ │ └── EFR32MG1P_idac_output_constant.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_idac_output_constant.ewd │ │ │ ├── EFM32GG11B_idac_output_constant.ewp │ │ │ ├── EFM32PG12B_idac_output_constant.ewd │ │ │ ├── EFM32PG12B_idac_output_constant.ewp │ │ │ ├── EFM32PG1B_idac_output_constant.ewd │ │ │ ├── EFM32PG1B_idac_output_constant.ewp │ │ │ ├── EFR32BG12P_idac_output_constant.ewd │ │ │ ├── EFR32BG12P_idac_output_constant.ewp │ │ │ ├── EFR32BG13P_idac_output_constant.ewd │ │ │ ├── EFR32BG13P_idac_output_constant.ewp │ │ │ ├── EFR32BG1P_idac_output_constant.ewd │ │ │ ├── EFR32BG1P_idac_output_constant.ewp │ │ │ ├── EFR32FG12P_idac_output_constant.ewd │ │ │ ├── EFR32FG12P_idac_output_constant.ewp │ │ │ ├── EFR32FG13P_idac_output_constant.ewd │ │ │ ├── EFR32FG13P_idac_output_constant.ewp │ │ │ ├── EFR32FG14P_idac_output_constant.ewd │ │ │ ├── EFR32FG14P_idac_output_constant.ewp │ │ │ ├── EFR32FG1P_idac_output_constant.ewd │ │ │ ├── EFR32FG1P_idac_output_constant.ewp │ │ │ ├── EFR32MG12P_idac_output_constant.ewd │ │ │ ├── EFR32MG12P_idac_output_constant.ewp │ │ │ ├── EFR32MG13P_idac_output_constant.ewd │ │ │ ├── EFR32MG13P_idac_output_constant.ewp │ │ │ ├── EFR32MG14P_idac_output_constant.ewd │ │ │ ├── EFR32MG14P_idac_output_constant.ewp │ │ │ ├── EFR32MG1P_idac_output_constant.ewd │ │ │ ├── EFR32MG1P_idac_output_constant.ewp │ │ │ └── idac_output_constant.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_pg12.c │ │ │ ├── main_radio12.c │ │ │ └── main_s1.c │ ├── idac_timer_dma_waveform │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_idac_timer_dma_waveform.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_idac_timer_dma_waveform.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_idac_timer_dma_waveform.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_idac_timer_dma_waveform.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_idac_timer_dma_waveform.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_idac_timer_dma_waveform.xml │ │ │ ├── EFM32PG12B_idac_timer_dma_waveform.xml │ │ │ ├── EFM32PG1B_idac_timer_dma_waveform.xml │ │ │ ├── EFR32BG12P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32BG13P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32BG1P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32FG12P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32FG13P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32FG14P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32FG1P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32MG12P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32MG13P_idac_timer_dma_waveform.xml │ │ │ ├── EFR32MG14P_idac_timer_dma_waveform.xml │ │ │ └── EFR32MG1P_idac_timer_dma_waveform.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_idac_timer_dma_waveform.ewd │ │ │ ├── EFM32GG11B_idac_timer_dma_waveform.ewp │ │ │ ├── EFM32PG12B_idac_timer_dma_waveform.ewd │ │ │ ├── EFM32PG12B_idac_timer_dma_waveform.ewp │ │ │ ├── EFM32PG1B_idac_timer_dma_waveform.ewd │ │ │ ├── EFM32PG1B_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32BG12P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32BG12P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32BG13P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32BG13P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32BG1P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32BG1P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32FG12P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32FG12P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32FG13P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32FG13P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32FG14P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32FG14P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32FG1P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32FG1P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32MG12P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32MG12P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32MG13P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32MG13P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32MG14P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32MG14P_idac_timer_dma_waveform.ewp │ │ │ ├── EFR32MG1P_idac_timer_dma_waveform.ewd │ │ │ ├── EFR32MG1P_idac_timer_dma_waveform.ewp │ │ │ └── idac_timer_dma_waveform.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_pg12.c │ │ │ ├── main_radio12.c │ │ │ └── main_s1.c │ └── idac_timer_prs │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_idac_timer_prs.slsproj │ │ ├── BRD4103A_EFR32BG12P_idac_timer_prs.slsproj │ │ ├── BRD4104A_EFR32BG13P_idac_timer_prs.slsproj │ │ ├── BRD4151A_EFR32MG1P_idac_timer_prs.slsproj │ │ ├── BRD4159A_EFR32MG13P_idac_timer_prs.slsproj │ │ ├── BRD4161A_EFR32MG12P_idac_timer_prs.slsproj │ │ ├── BRD4169B_EFR32MG14P_idac_timer_prs.slsproj │ │ ├── BRD4250A_EFR32FG1P_idac_timer_prs.slsproj │ │ ├── BRD4253A_EFR32FG12P_idac_timer_prs.slsproj │ │ ├── BRD4256A_EFR32FG13P_idac_timer_prs.slsproj │ │ ├── BRD4257A_EFR32FG14P_idac_timer_prs.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_idac_timer_prs.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_idac_timer_prs.slsproj │ │ └── SLSTK3701A_EFM32GG11B_idac_timer_prs.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_idac_timer_prs.xml │ │ ├── EFM32PG12B_idac_timer_prs.xml │ │ ├── EFM32PG1B_idac_timer_prs.xml │ │ ├── EFR32BG12P_idac_timer_prs.xml │ │ ├── EFR32BG13P_idac_timer_prs.xml │ │ ├── EFR32BG1P_idac_timer_prs.xml │ │ ├── EFR32FG12P_idac_timer_prs.xml │ │ ├── EFR32FG13P_idac_timer_prs.xml │ │ ├── EFR32FG14P_idac_timer_prs.xml │ │ ├── EFR32FG1P_idac_timer_prs.xml │ │ ├── EFR32MG12P_idac_timer_prs.xml │ │ ├── EFR32MG13P_idac_timer_prs.xml │ │ ├── EFR32MG14P_idac_timer_prs.xml │ │ └── EFR32MG1P_idac_timer_prs.xml │ │ ├── iar │ │ ├── EFM32GG11B_idac_timer_prs.ewd │ │ ├── EFM32GG11B_idac_timer_prs.ewp │ │ ├── EFM32PG12B_idac_timer_prs.ewd │ │ ├── EFM32PG12B_idac_timer_prs.ewp │ │ ├── EFM32PG1B_idac_timer_prs.ewd │ │ ├── EFM32PG1B_idac_timer_prs.ewp │ │ ├── EFR32BG12P_idac_timer_prs.ewd │ │ ├── EFR32BG12P_idac_timer_prs.ewp │ │ ├── EFR32BG13P_idac_timer_prs.ewd │ │ ├── EFR32BG13P_idac_timer_prs.ewp │ │ ├── EFR32BG1P_idac_timer_prs.ewd │ │ ├── EFR32BG1P_idac_timer_prs.ewp │ │ ├── EFR32FG12P_idac_timer_prs.ewd │ │ ├── EFR32FG12P_idac_timer_prs.ewp │ │ ├── EFR32FG13P_idac_timer_prs.ewd │ │ ├── EFR32FG13P_idac_timer_prs.ewp │ │ ├── EFR32FG14P_idac_timer_prs.ewd │ │ ├── EFR32FG14P_idac_timer_prs.ewp │ │ ├── EFR32FG1P_idac_timer_prs.ewd │ │ ├── EFR32FG1P_idac_timer_prs.ewp │ │ ├── EFR32MG12P_idac_timer_prs.ewd │ │ ├── EFR32MG12P_idac_timer_prs.ewp │ │ ├── EFR32MG13P_idac_timer_prs.ewd │ │ ├── EFR32MG13P_idac_timer_prs.ewp │ │ ├── EFR32MG14P_idac_timer_prs.ewd │ │ ├── EFR32MG14P_idac_timer_prs.ewp │ │ ├── EFR32MG1P_idac_timer_prs.ewd │ │ ├── EFR32MG1P_idac_timer_prs.ewp │ │ └── idac_timer_prs.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_pg12.c │ │ ├── main_radio12.c │ │ └── main_s1.c ├── ldma │ ├── ldma_2d_copy │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_2d_copy.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_2d_copy.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_2d_copy.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_2d_copy.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_2d_copy.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_2d_copy.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_2d_copy.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_2d_copy.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_2d_copy.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_2d_copy.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_2d_copy.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_2d_copy.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_2d_copy.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_2d_copy.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_2d_copy.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_2d_copy.xml │ │ │ ├── EFM32PG12B_ldma_2d_copy.xml │ │ │ ├── EFM32PG1B_ldma_2d_copy.xml │ │ │ ├── EFM32TG11B_ldma_2d_copy.xml │ │ │ ├── EFR32BG12P_ldma_2d_copy.xml │ │ │ ├── EFR32BG13P_ldma_2d_copy.xml │ │ │ ├── EFR32BG1P_ldma_2d_copy.xml │ │ │ ├── EFR32FG12P_ldma_2d_copy.xml │ │ │ ├── EFR32FG13P_ldma_2d_copy.xml │ │ │ ├── EFR32FG14P_ldma_2d_copy.xml │ │ │ ├── EFR32FG1P_ldma_2d_copy.xml │ │ │ ├── EFR32MG12P_ldma_2d_copy.xml │ │ │ ├── EFR32MG13P_ldma_2d_copy.xml │ │ │ ├── EFR32MG14P_ldma_2d_copy.xml │ │ │ └── EFR32MG1P_ldma_2d_copy.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_2d_copy.ewd │ │ │ ├── EFM32GG11B_ldma_2d_copy.ewp │ │ │ ├── EFM32PG12B_ldma_2d_copy.ewd │ │ │ ├── EFM32PG12B_ldma_2d_copy.ewp │ │ │ ├── EFM32PG1B_ldma_2d_copy.ewd │ │ │ ├── EFM32PG1B_ldma_2d_copy.ewp │ │ │ ├── EFM32TG11B_ldma_2d_copy.ewd │ │ │ ├── EFM32TG11B_ldma_2d_copy.ewp │ │ │ ├── EFR32BG12P_ldma_2d_copy.ewd │ │ │ ├── EFR32BG12P_ldma_2d_copy.ewp │ │ │ ├── EFR32BG13P_ldma_2d_copy.ewd │ │ │ ├── EFR32BG13P_ldma_2d_copy.ewp │ │ │ ├── EFR32BG1P_ldma_2d_copy.ewd │ │ │ ├── EFR32BG1P_ldma_2d_copy.ewp │ │ │ ├── EFR32FG12P_ldma_2d_copy.ewd │ │ │ ├── EFR32FG12P_ldma_2d_copy.ewp │ │ │ ├── EFR32FG13P_ldma_2d_copy.ewd │ │ │ ├── EFR32FG13P_ldma_2d_copy.ewp │ │ │ ├── EFR32FG14P_ldma_2d_copy.ewd │ │ │ ├── EFR32FG14P_ldma_2d_copy.ewp │ │ │ ├── EFR32FG1P_ldma_2d_copy.ewd │ │ │ ├── EFR32FG1P_ldma_2d_copy.ewp │ │ │ ├── EFR32MG12P_ldma_2d_copy.ewd │ │ │ ├── EFR32MG12P_ldma_2d_copy.ewp │ │ │ ├── EFR32MG13P_ldma_2d_copy.ewd │ │ │ ├── EFR32MG13P_ldma_2d_copy.ewp │ │ │ ├── EFR32MG14P_ldma_2d_copy.ewd │ │ │ ├── EFR32MG14P_ldma_2d_copy.ewp │ │ │ ├── EFR32MG1P_ldma_2d_copy.ewd │ │ │ ├── EFR32MG1P_ldma_2d_copy.ewp │ │ │ └── ldma_2d_copy.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_interchannel_synchronization │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_interchannel_synchronization.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_interchannel_synchronization.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_interchannel_synchronization.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_interchannel_synchronization.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_interchannel_synchronization.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_interchannel_synchronization.xml │ │ │ ├── EFM32PG12B_ldma_interchannel_synchronization.xml │ │ │ ├── EFM32PG1B_ldma_interchannel_synchronization.xml │ │ │ ├── EFM32TG11B_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32BG12P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32BG13P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32BG1P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32FG12P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32FG13P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32FG14P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32FG1P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG12P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG13P_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG14P_ldma_interchannel_synchronization.xml │ │ │ └── EFR32MG1P_ldma_interchannel_synchronization.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_interchannel_synchronization.ewd │ │ │ ├── EFM32GG11B_ldma_interchannel_synchronization.ewp │ │ │ ├── EFM32PG12B_ldma_interchannel_synchronization.ewd │ │ │ ├── EFM32PG12B_ldma_interchannel_synchronization.ewp │ │ │ ├── EFM32PG1B_ldma_interchannel_synchronization.ewd │ │ │ ├── EFM32PG1B_ldma_interchannel_synchronization.ewp │ │ │ ├── EFM32TG11B_ldma_interchannel_synchronization.ewd │ │ │ ├── EFM32TG11B_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32BG12P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32BG12P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32BG13P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32BG13P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32BG1P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32BG1P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32FG12P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32FG12P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32FG13P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32FG13P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32FG14P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32FG14P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32FG1P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32FG1P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG12P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG12P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG13P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG13P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG14P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG14P_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG1P_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG1P_ldma_interchannel_synchronization.ewp │ │ │ └── ldma_interchannel_synchronization.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_linked_list │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_linked_list.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_linked_list.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_linked_list.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_linked_list.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_linked_list.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_linked_list.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_linked_list.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_linked_list.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_linked_list.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_linked_list.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_linked_list.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_linked_list.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_linked_list.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_linked_list.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_linked_list.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_linked_list.xml │ │ │ ├── EFM32PG12B_ldma_linked_list.xml │ │ │ ├── EFM32PG1B_ldma_linked_list.xml │ │ │ ├── EFM32TG11B_ldma_linked_list.xml │ │ │ ├── EFR32BG12P_ldma_linked_list.xml │ │ │ ├── EFR32BG13P_ldma_linked_list.xml │ │ │ ├── EFR32BG1P_ldma_linked_list.xml │ │ │ ├── EFR32FG12P_ldma_linked_list.xml │ │ │ ├── EFR32FG13P_ldma_linked_list.xml │ │ │ ├── EFR32FG14P_ldma_linked_list.xml │ │ │ ├── EFR32FG1P_ldma_linked_list.xml │ │ │ ├── EFR32MG12P_ldma_linked_list.xml │ │ │ ├── EFR32MG13P_ldma_linked_list.xml │ │ │ ├── EFR32MG14P_ldma_linked_list.xml │ │ │ └── EFR32MG1P_ldma_linked_list.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_linked_list.ewd │ │ │ ├── EFM32GG11B_ldma_linked_list.ewp │ │ │ ├── EFM32PG12B_ldma_linked_list.ewd │ │ │ ├── EFM32PG12B_ldma_linked_list.ewp │ │ │ ├── EFM32PG1B_ldma_linked_list.ewd │ │ │ ├── EFM32PG1B_ldma_linked_list.ewp │ │ │ ├── EFM32TG11B_ldma_linked_list.ewd │ │ │ ├── EFM32TG11B_ldma_linked_list.ewp │ │ │ ├── EFR32BG12P_ldma_linked_list.ewd │ │ │ ├── EFR32BG12P_ldma_linked_list.ewp │ │ │ ├── EFR32BG13P_ldma_linked_list.ewd │ │ │ ├── EFR32BG13P_ldma_linked_list.ewp │ │ │ ├── EFR32BG1P_ldma_linked_list.ewd │ │ │ ├── EFR32BG1P_ldma_linked_list.ewp │ │ │ ├── EFR32FG12P_ldma_linked_list.ewd │ │ │ ├── EFR32FG12P_ldma_linked_list.ewp │ │ │ ├── EFR32FG13P_ldma_linked_list.ewd │ │ │ ├── EFR32FG13P_ldma_linked_list.ewp │ │ │ ├── EFR32FG14P_ldma_linked_list.ewd │ │ │ ├── EFR32FG14P_ldma_linked_list.ewp │ │ │ ├── EFR32FG1P_ldma_linked_list.ewd │ │ │ ├── EFR32FG1P_ldma_linked_list.ewp │ │ │ ├── EFR32MG12P_ldma_linked_list.ewd │ │ │ ├── EFR32MG12P_ldma_linked_list.ewp │ │ │ ├── EFR32MG13P_ldma_linked_list.ewd │ │ │ ├── EFR32MG13P_ldma_linked_list.ewp │ │ │ ├── EFR32MG14P_ldma_linked_list.ewd │ │ │ ├── EFR32MG14P_ldma_linked_list.ewp │ │ │ ├── EFR32MG1P_ldma_linked_list.ewd │ │ │ ├── EFR32MG1P_ldma_linked_list.ewp │ │ │ └── ldma_linked_list.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_linked_list_looped │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_linked_list_looped.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_linked_list_looped.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_linked_list_looped.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_linked_list_looped.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_linked_list_looped.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_linked_list_looped.xml │ │ │ ├── EFM32PG12B_ldma_linked_list_looped.xml │ │ │ ├── EFM32PG1B_ldma_linked_list_looped.xml │ │ │ ├── EFM32TG11B_ldma_linked_list_looped.xml │ │ │ ├── EFR32BG12P_ldma_linked_list_looped.xml │ │ │ ├── EFR32BG13P_ldma_linked_list_looped.xml │ │ │ ├── EFR32BG1P_ldma_linked_list_looped.xml │ │ │ ├── EFR32FG12P_ldma_linked_list_looped.xml │ │ │ ├── EFR32FG13P_ldma_linked_list_looped.xml │ │ │ ├── EFR32FG14P_ldma_linked_list_looped.xml │ │ │ ├── EFR32FG1P_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG12P_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG13P_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG14P_ldma_linked_list_looped.xml │ │ │ └── EFR32MG1P_ldma_linked_list_looped.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_linked_list_looped.ewd │ │ │ ├── EFM32GG11B_ldma_linked_list_looped.ewp │ │ │ ├── EFM32PG12B_ldma_linked_list_looped.ewd │ │ │ ├── EFM32PG12B_ldma_linked_list_looped.ewp │ │ │ ├── EFM32PG1B_ldma_linked_list_looped.ewd │ │ │ ├── EFM32PG1B_ldma_linked_list_looped.ewp │ │ │ ├── EFM32TG11B_ldma_linked_list_looped.ewd │ │ │ ├── EFM32TG11B_ldma_linked_list_looped.ewp │ │ │ ├── EFR32BG12P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32BG12P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32BG13P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32BG13P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32BG1P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32BG1P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32FG12P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32FG12P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32FG13P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32FG13P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32FG14P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32FG14P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32FG1P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32FG1P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG12P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG12P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG13P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG13P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG14P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG14P_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG1P_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG1P_ldma_linked_list_looped.ewp │ │ │ └── ldma_linked_list_looped.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_ping_pong │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_ping_pong.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_ping_pong.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_ping_pong.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_ping_pong.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_ping_pong.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_ping_pong.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_ping_pong.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_ping_pong.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_ping_pong.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_ping_pong.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_ping_pong.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_ping_pong.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_ping_pong.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_ping_pong.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_ping_pong.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_ping_pong.xml │ │ │ ├── EFM32PG12B_ldma_ping_pong.xml │ │ │ ├── EFM32PG1B_ldma_ping_pong.xml │ │ │ ├── EFM32TG11B_ldma_ping_pong.xml │ │ │ ├── EFR32BG12P_ldma_ping_pong.xml │ │ │ ├── EFR32BG13P_ldma_ping_pong.xml │ │ │ ├── EFR32BG1P_ldma_ping_pong.xml │ │ │ ├── EFR32FG12P_ldma_ping_pong.xml │ │ │ ├── EFR32FG13P_ldma_ping_pong.xml │ │ │ ├── EFR32FG14P_ldma_ping_pong.xml │ │ │ ├── EFR32FG1P_ldma_ping_pong.xml │ │ │ ├── EFR32MG12P_ldma_ping_pong.xml │ │ │ ├── EFR32MG13P_ldma_ping_pong.xml │ │ │ ├── EFR32MG14P_ldma_ping_pong.xml │ │ │ └── EFR32MG1P_ldma_ping_pong.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_ping_pong.ewd │ │ │ ├── EFM32GG11B_ldma_ping_pong.ewp │ │ │ ├── EFM32PG12B_ldma_ping_pong.ewd │ │ │ ├── EFM32PG12B_ldma_ping_pong.ewp │ │ │ ├── EFM32PG1B_ldma_ping_pong.ewd │ │ │ ├── EFM32PG1B_ldma_ping_pong.ewp │ │ │ ├── EFM32TG11B_ldma_ping_pong.ewd │ │ │ ├── EFM32TG11B_ldma_ping_pong.ewp │ │ │ ├── EFR32BG12P_ldma_ping_pong.ewd │ │ │ ├── EFR32BG12P_ldma_ping_pong.ewp │ │ │ ├── EFR32BG13P_ldma_ping_pong.ewd │ │ │ ├── EFR32BG13P_ldma_ping_pong.ewp │ │ │ ├── EFR32BG1P_ldma_ping_pong.ewd │ │ │ ├── EFR32BG1P_ldma_ping_pong.ewp │ │ │ ├── EFR32FG12P_ldma_ping_pong.ewd │ │ │ ├── EFR32FG12P_ldma_ping_pong.ewp │ │ │ ├── EFR32FG13P_ldma_ping_pong.ewd │ │ │ ├── EFR32FG13P_ldma_ping_pong.ewp │ │ │ ├── EFR32FG14P_ldma_ping_pong.ewd │ │ │ ├── EFR32FG14P_ldma_ping_pong.ewp │ │ │ ├── EFR32FG1P_ldma_ping_pong.ewd │ │ │ ├── EFR32FG1P_ldma_ping_pong.ewp │ │ │ ├── EFR32MG12P_ldma_ping_pong.ewd │ │ │ ├── EFR32MG12P_ldma_ping_pong.ewp │ │ │ ├── EFR32MG13P_ldma_ping_pong.ewd │ │ │ ├── EFR32MG13P_ldma_ping_pong.ewp │ │ │ ├── EFR32MG14P_ldma_ping_pong.ewd │ │ │ ├── EFR32MG14P_ldma_ping_pong.ewp │ │ │ ├── EFR32MG1P_ldma_ping_pong.ewd │ │ │ ├── EFR32MG1P_ldma_ping_pong.ewp │ │ │ └── ldma_ping_pong.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_scatter_gather │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_scatter_gather.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_scatter_gather.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_scatter_gather.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_scatter_gather.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_scatter_gather.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_scatter_gather.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_scatter_gather.xml │ │ │ ├── EFM32PG12B_ldma_scatter_gather.xml │ │ │ ├── EFM32PG1B_ldma_scatter_gather.xml │ │ │ ├── EFM32TG11B_ldma_scatter_gather.xml │ │ │ ├── EFR32BG12P_ldma_scatter_gather.xml │ │ │ ├── EFR32BG13P_ldma_scatter_gather.xml │ │ │ ├── EFR32BG1P_ldma_scatter_gather.xml │ │ │ ├── EFR32FG12P_ldma_scatter_gather.xml │ │ │ ├── EFR32FG13P_ldma_scatter_gather.xml │ │ │ ├── EFR32FG14P_ldma_scatter_gather.xml │ │ │ ├── EFR32FG1P_ldma_scatter_gather.xml │ │ │ ├── EFR32MG12P_ldma_scatter_gather.xml │ │ │ ├── EFR32MG13P_ldma_scatter_gather.xml │ │ │ ├── EFR32MG14P_ldma_scatter_gather.xml │ │ │ └── EFR32MG1P_ldma_scatter_gather.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_scatter_gather.ewd │ │ │ ├── EFM32GG11B_ldma_scatter_gather.ewp │ │ │ ├── EFM32PG12B_ldma_scatter_gather.ewd │ │ │ ├── EFM32PG12B_ldma_scatter_gather.ewp │ │ │ ├── EFM32PG1B_ldma_scatter_gather.ewd │ │ │ ├── EFM32PG1B_ldma_scatter_gather.ewp │ │ │ ├── EFM32TG11B_ldma_scatter_gather.ewd │ │ │ ├── EFM32TG11B_ldma_scatter_gather.ewp │ │ │ ├── EFR32BG12P_ldma_scatter_gather.ewd │ │ │ ├── EFR32BG12P_ldma_scatter_gather.ewp │ │ │ ├── EFR32BG13P_ldma_scatter_gather.ewd │ │ │ ├── EFR32BG13P_ldma_scatter_gather.ewp │ │ │ ├── EFR32BG1P_ldma_scatter_gather.ewd │ │ │ ├── EFR32BG1P_ldma_scatter_gather.ewp │ │ │ ├── EFR32FG12P_ldma_scatter_gather.ewd │ │ │ ├── EFR32FG12P_ldma_scatter_gather.ewp │ │ │ ├── EFR32FG13P_ldma_scatter_gather.ewd │ │ │ ├── EFR32FG13P_ldma_scatter_gather.ewp │ │ │ ├── EFR32FG14P_ldma_scatter_gather.ewd │ │ │ ├── EFR32FG14P_ldma_scatter_gather.ewp │ │ │ ├── EFR32FG1P_ldma_scatter_gather.ewd │ │ │ ├── EFR32FG1P_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG12P_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG12P_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG13P_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG13P_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG14P_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG14P_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG1P_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG1P_ldma_scatter_gather.ewp │ │ │ └── ldma_scatter_gather.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_single_button │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_single_button.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_single_button.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_single_button.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_single_button.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_single_button.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_single_button.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_single_button.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_single_button.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_single_button.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_single_button.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_single_button.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_single_button.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_single_button.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_single_button.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_single_button.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_single_button.xml │ │ │ ├── EFM32PG12B_ldma_single_button.xml │ │ │ ├── EFM32PG1B_ldma_single_button.xml │ │ │ ├── EFM32TG11B_ldma_single_button.xml │ │ │ ├── EFR32BG12P_ldma_single_button.xml │ │ │ ├── EFR32BG13P_ldma_single_button.xml │ │ │ ├── EFR32BG1P_ldma_single_button.xml │ │ │ ├── EFR32FG12P_ldma_single_button.xml │ │ │ ├── EFR32FG13P_ldma_single_button.xml │ │ │ ├── EFR32FG14P_ldma_single_button.xml │ │ │ ├── EFR32FG1P_ldma_single_button.xml │ │ │ ├── EFR32MG12P_ldma_single_button.xml │ │ │ ├── EFR32MG13P_ldma_single_button.xml │ │ │ ├── EFR32MG14P_ldma_single_button.xml │ │ │ └── EFR32MG1P_ldma_single_button.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_single_button.ewd │ │ │ ├── EFM32GG11B_ldma_single_button.ewp │ │ │ ├── EFM32PG12B_ldma_single_button.ewd │ │ │ ├── EFM32PG12B_ldma_single_button.ewp │ │ │ ├── EFM32PG1B_ldma_single_button.ewd │ │ │ ├── EFM32PG1B_ldma_single_button.ewp │ │ │ ├── EFM32TG11B_ldma_single_button.ewd │ │ │ ├── EFM32TG11B_ldma_single_button.ewp │ │ │ ├── EFR32BG12P_ldma_single_button.ewd │ │ │ ├── EFR32BG12P_ldma_single_button.ewp │ │ │ ├── EFR32BG13P_ldma_single_button.ewd │ │ │ ├── EFR32BG13P_ldma_single_button.ewp │ │ │ ├── EFR32BG1P_ldma_single_button.ewd │ │ │ ├── EFR32BG1P_ldma_single_button.ewp │ │ │ ├── EFR32FG12P_ldma_single_button.ewd │ │ │ ├── EFR32FG12P_ldma_single_button.ewp │ │ │ ├── EFR32FG13P_ldma_single_button.ewd │ │ │ ├── EFR32FG13P_ldma_single_button.ewp │ │ │ ├── EFR32FG14P_ldma_single_button.ewd │ │ │ ├── EFR32FG14P_ldma_single_button.ewp │ │ │ ├── EFR32FG1P_ldma_single_button.ewd │ │ │ ├── EFR32FG1P_ldma_single_button.ewp │ │ │ ├── EFR32MG12P_ldma_single_button.ewd │ │ │ ├── EFR32MG12P_ldma_single_button.ewp │ │ │ ├── EFR32MG13P_ldma_single_button.ewd │ │ │ ├── EFR32MG13P_ldma_single_button.ewp │ │ │ ├── EFR32MG14P_ldma_single_button.ewd │ │ │ ├── EFR32MG14P_ldma_single_button.ewp │ │ │ ├── EFR32MG1P_ldma_single_button.ewd │ │ │ ├── EFR32MG1P_ldma_single_button.ewp │ │ │ └── ldma_single_button.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_single_looped │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_ldma_single_looped.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_ldma_single_looped.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_ldma_single_looped.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_ldma_single_looped.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_ldma_single_looped.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_ldma_single_looped.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_ldma_single_looped.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_ldma_single_looped.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_ldma_single_looped.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_ldma_single_looped.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_ldma_single_looped.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_ldma_single_looped.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_ldma_single_looped.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_ldma_single_looped.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_ldma_single_looped.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_ldma_single_looped.xml │ │ │ ├── EFM32PG12B_ldma_single_looped.xml │ │ │ ├── EFM32PG1B_ldma_single_looped.xml │ │ │ ├── EFM32TG11B_ldma_single_looped.xml │ │ │ ├── EFR32BG12P_ldma_single_looped.xml │ │ │ ├── EFR32BG13P_ldma_single_looped.xml │ │ │ ├── EFR32BG1P_ldma_single_looped.xml │ │ │ ├── EFR32FG12P_ldma_single_looped.xml │ │ │ ├── EFR32FG13P_ldma_single_looped.xml │ │ │ ├── EFR32FG14P_ldma_single_looped.xml │ │ │ ├── EFR32FG1P_ldma_single_looped.xml │ │ │ ├── EFR32MG12P_ldma_single_looped.xml │ │ │ ├── EFR32MG13P_ldma_single_looped.xml │ │ │ ├── EFR32MG14P_ldma_single_looped.xml │ │ │ └── EFR32MG1P_ldma_single_looped.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_ldma_single_looped.ewd │ │ │ ├── EFM32GG11B_ldma_single_looped.ewp │ │ │ ├── EFM32PG12B_ldma_single_looped.ewd │ │ │ ├── EFM32PG12B_ldma_single_looped.ewp │ │ │ ├── EFM32PG1B_ldma_single_looped.ewd │ │ │ ├── EFM32PG1B_ldma_single_looped.ewp │ │ │ ├── EFM32TG11B_ldma_single_looped.ewd │ │ │ ├── EFM32TG11B_ldma_single_looped.ewp │ │ │ ├── EFR32BG12P_ldma_single_looped.ewd │ │ │ ├── EFR32BG12P_ldma_single_looped.ewp │ │ │ ├── EFR32BG13P_ldma_single_looped.ewd │ │ │ ├── EFR32BG13P_ldma_single_looped.ewp │ │ │ ├── EFR32BG1P_ldma_single_looped.ewd │ │ │ ├── EFR32BG1P_ldma_single_looped.ewp │ │ │ ├── EFR32FG12P_ldma_single_looped.ewd │ │ │ ├── EFR32FG12P_ldma_single_looped.ewp │ │ │ ├── EFR32FG13P_ldma_single_looped.ewd │ │ │ ├── EFR32FG13P_ldma_single_looped.ewp │ │ │ ├── EFR32FG14P_ldma_single_looped.ewd │ │ │ ├── EFR32FG14P_ldma_single_looped.ewp │ │ │ ├── EFR32FG1P_ldma_single_looped.ewd │ │ │ ├── EFR32FG1P_ldma_single_looped.ewp │ │ │ ├── EFR32MG12P_ldma_single_looped.ewd │ │ │ ├── EFR32MG12P_ldma_single_looped.ewp │ │ │ ├── EFR32MG13P_ldma_single_looped.ewd │ │ │ ├── EFR32MG13P_ldma_single_looped.ewp │ │ │ ├── EFR32MG14P_ldma_single_looped.ewd │ │ │ ├── EFR32MG14P_ldma_single_looped.ewp │ │ │ ├── EFR32MG1P_ldma_single_looped.ewd │ │ │ ├── EFR32MG1P_ldma_single_looped.ewp │ │ │ └── ldma_single_looped.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── ldma_single_software │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_ldma_single_software.slsproj │ │ ├── BRD4103A_EFR32BG12P_ldma_single_software.slsproj │ │ ├── BRD4104A_EFR32BG13P_ldma_single_software.slsproj │ │ ├── BRD4151A_EFR32MG1P_ldma_single_software.slsproj │ │ ├── BRD4159A_EFR32MG13P_ldma_single_software.slsproj │ │ ├── BRD4161A_EFR32MG12P_ldma_single_software.slsproj │ │ ├── BRD4169A_EFR32MG14P_ldma_single_software.slsproj │ │ ├── BRD4250A_EFR32FG1P_ldma_single_software.slsproj │ │ ├── BRD4253A_EFR32FG12P_ldma_single_software.slsproj │ │ ├── BRD4256A_EFR32FG13P_ldma_single_software.slsproj │ │ ├── BRD4257A_EFR32FG14P_ldma_single_software.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_ldma_single_software.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_ldma_single_software.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_ldma_single_software.slsproj │ │ └── SLSTK3701A_EFM32GG11B_ldma_single_software.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_ldma_single_software.xml │ │ ├── EFM32PG12B_ldma_single_software.xml │ │ ├── EFM32PG1B_ldma_single_software.xml │ │ ├── EFM32TG11B_ldma_single_software.xml │ │ ├── EFR32BG12P_ldma_single_software.xml │ │ ├── EFR32BG13P_ldma_single_software.xml │ │ ├── EFR32BG1P_ldma_single_software.xml │ │ ├── EFR32FG12P_ldma_single_software.xml │ │ ├── EFR32FG13P_ldma_single_software.xml │ │ ├── EFR32FG14P_ldma_single_software.xml │ │ ├── EFR32FG1P_ldma_single_software.xml │ │ ├── EFR32MG12P_ldma_single_software.xml │ │ ├── EFR32MG13P_ldma_single_software.xml │ │ ├── EFR32MG14P_ldma_single_software.xml │ │ └── EFR32MG1P_ldma_single_software.xml │ │ ├── iar │ │ ├── EFM32GG11B_ldma_single_software.ewd │ │ ├── EFM32GG11B_ldma_single_software.ewp │ │ ├── EFM32PG12B_ldma_single_software.ewd │ │ ├── EFM32PG12B_ldma_single_software.ewp │ │ ├── EFM32PG1B_ldma_single_software.ewd │ │ ├── EFM32PG1B_ldma_single_software.ewp │ │ ├── EFM32TG11B_ldma_single_software.ewd │ │ ├── EFM32TG11B_ldma_single_software.ewp │ │ ├── EFR32BG12P_ldma_single_software.ewd │ │ ├── EFR32BG12P_ldma_single_software.ewp │ │ ├── EFR32BG13P_ldma_single_software.ewd │ │ ├── EFR32BG13P_ldma_single_software.ewp │ │ ├── EFR32BG1P_ldma_single_software.ewd │ │ ├── EFR32BG1P_ldma_single_software.ewp │ │ ├── EFR32FG12P_ldma_single_software.ewd │ │ ├── EFR32FG12P_ldma_single_software.ewp │ │ ├── EFR32FG13P_ldma_single_software.ewd │ │ ├── EFR32FG13P_ldma_single_software.ewp │ │ ├── EFR32FG14P_ldma_single_software.ewd │ │ ├── EFR32FG14P_ldma_single_software.ewp │ │ ├── EFR32FG1P_ldma_single_software.ewd │ │ ├── EFR32FG1P_ldma_single_software.ewp │ │ ├── EFR32MG12P_ldma_single_software.ewd │ │ ├── EFR32MG12P_ldma_single_software.ewp │ │ ├── EFR32MG13P_ldma_single_software.ewd │ │ ├── EFR32MG13P_ldma_single_software.ewp │ │ ├── EFR32MG14P_ldma_single_software.ewd │ │ ├── EFR32MG14P_ldma_single_software.ewp │ │ ├── EFR32MG1P_ldma_single_software.ewd │ │ ├── EFR32MG1P_ldma_single_software.ewp │ │ └── ldma_single_software.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── lesense │ └── lesense_multi_channel_ACMP │ │ ├── SimplicityStudio │ │ ├── SLSTK3301A_EFM32TG11_lesense_multi_channel_ACMP.slsproj │ │ └── SLSTK3701A_EFM32GG11_lesense_multi_channel_ACMP.slsproj │ │ ├── doc │ │ ├── EFM32GG11_lesense_multi_channel_ACMP.xml │ │ └── EFM32TG11_lesense_multi_channel_ACMP.xml │ │ ├── iar │ │ ├── EFM32GG11_lesense_multi_channel_ACMP.ewd │ │ ├── EFM32GG11_lesense_multi_channel_ACMP.ewp │ │ ├── EFM32TG11_lesense_multi_channel_ACMP.ewd │ │ ├── EFM32TG11_lesense_multi_channel_ACMP.ewp │ │ └── lesense_multi_channel_ACMP.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11.c │ │ └── main_tg11.c ├── letimer │ ├── one_shot_output_compare │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_one_shot_output_compare.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_one_shot_output_compare.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_one_shot_output_compare.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_one_shot_output_compare.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_one_shot_output_compare.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_one_shot_output_compare.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_one_shot_output_compare.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_one_shot_output_compare.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_one_shot_output_compare.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_one_shot_output_compare.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_one_shot_output_compare.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_one_shot_output_compare.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_one_shot_output_compare.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_one_shot_output_compare.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_one_shot_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_one_shot_output_compare.xml │ │ │ ├── EFM32PG12B_one_shot_output_compare.xml │ │ │ ├── EFM32PG1B_one_shot_output_compare.xml │ │ │ ├── EFM32TG11B_one_shot_output_compare.xml │ │ │ ├── EFR32BG12P_one_shot_output_compare.xml │ │ │ ├── EFR32BG13P_one_shot_output_compare.xml │ │ │ ├── EFR32BG1P_one_shot_output_compare.xml │ │ │ ├── EFR32FG12P_one_shot_output_compare.xml │ │ │ ├── EFR32FG13P_one_shot_output_compare.xml │ │ │ ├── EFR32FG14P_one_shot_output_compare.xml │ │ │ ├── EFR32FG1P_one_shot_output_compare.xml │ │ │ ├── EFR32MG12P_one_shot_output_compare.xml │ │ │ ├── EFR32MG13P_one_shot_output_compare.xml │ │ │ ├── EFR32MG14P_one_shot_output_compare.xml │ │ │ └── EFR32MG1P_one_shot_output_compare.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_one_shot_output_compare.ewd │ │ │ ├── EFM32GG11B_one_shot_output_compare.ewp │ │ │ ├── EFM32PG12B_one_shot_output_compare.ewd │ │ │ ├── EFM32PG12B_one_shot_output_compare.ewp │ │ │ ├── EFM32PG1B_one_shot_output_compare.ewd │ │ │ ├── EFM32PG1B_one_shot_output_compare.ewp │ │ │ ├── EFM32TG11B_one_shot_output_compare.ewd │ │ │ ├── EFM32TG11B_one_shot_output_compare.ewp │ │ │ ├── EFR32BG12P_one_shot_output_compare.ewd │ │ │ ├── EFR32BG12P_one_shot_output_compare.ewp │ │ │ ├── EFR32BG13P_one_shot_output_compare.ewd │ │ │ ├── EFR32BG13P_one_shot_output_compare.ewp │ │ │ ├── EFR32BG1P_one_shot_output_compare.ewd │ │ │ ├── EFR32BG1P_one_shot_output_compare.ewp │ │ │ ├── EFR32FG12P_one_shot_output_compare.ewd │ │ │ ├── EFR32FG12P_one_shot_output_compare.ewp │ │ │ ├── EFR32FG13P_one_shot_output_compare.ewd │ │ │ ├── EFR32FG13P_one_shot_output_compare.ewp │ │ │ ├── EFR32FG14P_one_shot_output_compare.ewd │ │ │ ├── EFR32FG14P_one_shot_output_compare.ewp │ │ │ ├── EFR32FG1P_one_shot_output_compare.ewd │ │ │ ├── EFR32FG1P_one_shot_output_compare.ewp │ │ │ ├── EFR32MG12P_one_shot_output_compare.ewd │ │ │ ├── EFR32MG12P_one_shot_output_compare.ewp │ │ │ ├── EFR32MG13P_one_shot_output_compare.ewd │ │ │ ├── EFR32MG13P_one_shot_output_compare.ewp │ │ │ ├── EFR32MG14P_one_shot_output_compare.ewd │ │ │ ├── EFR32MG14P_one_shot_output_compare.ewp │ │ │ ├── EFR32MG1P_one_shot_output_compare.ewd │ │ │ ├── EFR32MG1P_one_shot_output_compare.ewp │ │ │ └── one_shot_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── pulse_train │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pulse_train.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pulse_train.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pulse_train.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pulse_train.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pulse_train.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pulse_train.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_pulse_train.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pulse_train.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pulse_train.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pulse_train.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pulse_train.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_pulse_train.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pulse_train.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pulse_train.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_pulse_train.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_pulse_train.xml │ │ │ ├── EFM32PG12B_pulse_train.xml │ │ │ ├── EFM32PG1B_pulse_train.xml │ │ │ ├── EFM32TG11B_pulse_train.xml │ │ │ ├── EFR32BG12P_pulse_train.xml │ │ │ ├── EFR32BG13P_pulse_train.xml │ │ │ ├── EFR32BG1P_pulse_train.xml │ │ │ ├── EFR32FG12P_pulse_train.xml │ │ │ ├── EFR32FG13P_pulse_train.xml │ │ │ ├── EFR32FG14P_pulse_train.xml │ │ │ ├── EFR32FG1P_pulse_train.xml │ │ │ ├── EFR32MG12P_pulse_train.xml │ │ │ ├── EFR32MG13P_pulse_train.xml │ │ │ ├── EFR32MG14P_pulse_train.xml │ │ │ └── EFR32MG1P_pulse_train.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_pulse_train.ewd │ │ │ ├── EFM32GG11B_pulse_train.ewp │ │ │ ├── EFM32PG12B_pulse_train.ewd │ │ │ ├── EFM32PG12B_pulse_train.ewp │ │ │ ├── EFM32PG1B_pulse_train.ewd │ │ │ ├── EFM32PG1B_pulse_train.ewp │ │ │ ├── EFM32TG11B_pulse_train.ewd │ │ │ ├── EFM32TG11B_pulse_train.ewp │ │ │ ├── EFR32BG12P_pulse_train.ewd │ │ │ ├── EFR32BG12P_pulse_train.ewp │ │ │ ├── EFR32BG13P_pulse_train.ewd │ │ │ ├── EFR32BG13P_pulse_train.ewp │ │ │ ├── EFR32BG1P_pulse_train.ewd │ │ │ ├── EFR32BG1P_pulse_train.ewp │ │ │ ├── EFR32FG12P_pulse_train.ewd │ │ │ ├── EFR32FG12P_pulse_train.ewp │ │ │ ├── EFR32FG13P_pulse_train.ewd │ │ │ ├── EFR32FG13P_pulse_train.ewp │ │ │ ├── EFR32FG14P_pulse_train.ewd │ │ │ ├── EFR32FG14P_pulse_train.ewp │ │ │ ├── EFR32FG1P_pulse_train.ewd │ │ │ ├── EFR32FG1P_pulse_train.ewp │ │ │ ├── EFR32MG12P_pulse_train.ewd │ │ │ ├── EFR32MG12P_pulse_train.ewp │ │ │ ├── EFR32MG13P_pulse_train.ewd │ │ │ ├── EFR32MG13P_pulse_train.ewp │ │ │ ├── EFR32MG14P_pulse_train.ewd │ │ │ ├── EFR32MG14P_pulse_train.ewp │ │ │ ├── EFR32MG1P_pulse_train.ewd │ │ │ ├── EFR32MG1P_pulse_train.ewp │ │ │ └── pulse_train.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ └── pulse_width_modulation │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_pulse_width_modulation.slsproj │ │ ├── BRD4103A_EFR32BG12P_pulse_width_modulation.slsproj │ │ ├── BRD4104A_EFR32BG13P_pulse_width_modulation.slsproj │ │ ├── BRD4151A_EFR32MG1P_pulse_width_modulation.slsproj │ │ ├── BRD4159A_EFR32MG13P_pulse_width_modulation.slsproj │ │ ├── BRD4161A_EFR32MG12P_pulse_width_modulation.slsproj │ │ ├── BRD4169A_EFR32MG14P_pulse_width_modulation.slsproj │ │ ├── BRD4250A_EFR32FG1P_pulse_width_modulation.slsproj │ │ ├── BRD4253A_EFR32FG12P_pulse_width_modulation.slsproj │ │ ├── BRD4256A_EFR32FG13P_pulse_width_modulation.slsproj │ │ ├── BRD4257A_EFR32FG14P_pulse_width_modulation.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_pulse_width_modulation.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_pulse_width_modulation.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_pulse_width_modulation.slsproj │ │ └── SLSTK3701A_EFM32GG11B_pulse_width_modulation.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_pulse_width_modulation.xml │ │ ├── EFM32PG12B_pulse_width_modulation.xml │ │ ├── EFM32PG1B_pulse_width_modulation.xml │ │ ├── EFM32TG11B_pulse_width_modulation.xml │ │ ├── EFR32BG12P_pulse_width_modulation.xml │ │ ├── EFR32BG13P_pulse_width_modulation.xml │ │ ├── EFR32BG1P_pulse_width_modulation.xml │ │ ├── EFR32FG12P_pulse_width_modulation.xml │ │ ├── EFR32FG13P_pulse_width_modulation.xml │ │ ├── EFR32FG14P_pulse_width_modulation.xml │ │ ├── EFR32FG1P_pulse_width_modulation.xml │ │ ├── EFR32MG12P_pulse_width_modulation.xml │ │ ├── EFR32MG13P_pulse_width_modulation.xml │ │ ├── EFR32MG14P_pulse_width_modulation.xml │ │ └── EFR32MG1P_pulse_width_modulation.xml │ │ ├── iar │ │ ├── EFM32GG11B_pulse_width_modulation.ewd │ │ ├── EFM32GG11B_pulse_width_modulation.ewp │ │ ├── EFM32PG12B_pulse_width_modulation.ewd │ │ ├── EFM32PG12B_pulse_width_modulation.ewp │ │ ├── EFM32PG1B_pulse_width_modulation.ewd │ │ ├── EFM32PG1B_pulse_width_modulation.ewp │ │ ├── EFM32TG11B_pulse_width_modulation.ewd │ │ ├── EFM32TG11B_pulse_width_modulation.ewp │ │ ├── EFR32BG12P_pulse_width_modulation.ewd │ │ ├── EFR32BG12P_pulse_width_modulation.ewp │ │ ├── EFR32BG13P_pulse_width_modulation.ewd │ │ ├── EFR32BG13P_pulse_width_modulation.ewp │ │ ├── EFR32BG1P_pulse_width_modulation.ewd │ │ ├── EFR32BG1P_pulse_width_modulation.ewp │ │ ├── EFR32FG12P_pulse_width_modulation.ewd │ │ ├── EFR32FG12P_pulse_width_modulation.ewp │ │ ├── EFR32FG13P_pulse_width_modulation.ewd │ │ ├── EFR32FG13P_pulse_width_modulation.ewp │ │ ├── EFR32FG14P_pulse_width_modulation.ewd │ │ ├── EFR32FG14P_pulse_width_modulation.ewp │ │ ├── EFR32FG1P_pulse_width_modulation.ewd │ │ ├── EFR32FG1P_pulse_width_modulation.ewp │ │ ├── EFR32MG12P_pulse_width_modulation.ewd │ │ ├── EFR32MG12P_pulse_width_modulation.ewp │ │ ├── EFR32MG13P_pulse_width_modulation.ewd │ │ ├── EFR32MG13P_pulse_width_modulation.ewp │ │ ├── EFR32MG14P_pulse_width_modulation.ewd │ │ ├── EFR32MG14P_pulse_width_modulation.ewp │ │ ├── EFR32MG1P_pulse_width_modulation.ewd │ │ ├── EFR32MG1P_pulse_width_modulation.ewp │ │ └── pulse_width_modulation.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11.c │ │ ├── main_s1.c │ │ └── main_tg11.c ├── leuart │ ├── leuart_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_leuart_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_leuart_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_leuart_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_leuart_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_leuart_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_leuart_dma.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_leuart_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_leuart_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_leuart_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_leuart_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_leuart_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_leuart_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_leuart_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_leuart_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_leuart_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_leuart_dma.xml │ │ │ ├── EFM32PG12B_leuart_dma.xml │ │ │ ├── EFM32PG1B_leuart_dma.xml │ │ │ ├── EFM32TG11B_leuart_dma.xml │ │ │ ├── EFR32BG12P_leuart_dma.xml │ │ │ ├── EFR32BG13P_leuart_dma.xml │ │ │ ├── EFR32BG1P_leuart_dma.xml │ │ │ ├── EFR32FG12P_leuart_dma.xml │ │ │ ├── EFR32FG13P_leuart_dma.xml │ │ │ ├── EFR32FG14P_leuart_dma.xml │ │ │ ├── EFR32FG1P_leuart_dma.xml │ │ │ ├── EFR32MG12P_leuart_dma.xml │ │ │ ├── EFR32MG13P_leuart_dma.xml │ │ │ ├── EFR32MG14P_leuart_dma.xml │ │ │ └── EFR32MG1P_leuart_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_leuart_dma.ewd │ │ │ ├── EFM32GG11B_leuart_dma.ewp │ │ │ ├── EFM32PG12B_leuart_dma.ewd │ │ │ ├── EFM32PG12B_leuart_dma.ewp │ │ │ ├── EFM32PG1B_leuart_dma.ewd │ │ │ ├── EFM32PG1B_leuart_dma.ewp │ │ │ ├── EFM32TG11B_leuart_dma.ewd │ │ │ ├── EFM32TG11B_leuart_dma.ewp │ │ │ ├── EFR32BG12P_leuart_dma.ewd │ │ │ ├── EFR32BG12P_leuart_dma.ewp │ │ │ ├── EFR32BG13P_leuart_dma.ewd │ │ │ ├── EFR32BG13P_leuart_dma.ewp │ │ │ ├── EFR32BG1P_leuart_dma.ewd │ │ │ ├── EFR32BG1P_leuart_dma.ewp │ │ │ ├── EFR32FG12P_leuart_dma.ewd │ │ │ ├── EFR32FG12P_leuart_dma.ewp │ │ │ ├── EFR32FG13P_leuart_dma.ewd │ │ │ ├── EFR32FG13P_leuart_dma.ewp │ │ │ ├── EFR32FG14P_leuart_dma.ewd │ │ │ ├── EFR32FG14P_leuart_dma.ewp │ │ │ ├── EFR32FG1P_leuart_dma.ewd │ │ │ ├── EFR32FG1P_leuart_dma.ewp │ │ │ ├── EFR32MG12P_leuart_dma.ewd │ │ │ ├── EFR32MG12P_leuart_dma.ewp │ │ │ ├── EFR32MG13P_leuart_dma.ewd │ │ │ ├── EFR32MG13P_leuart_dma.ewp │ │ │ ├── EFR32MG14P_leuart_dma.ewd │ │ │ ├── EFR32MG14P_leuart_dma.ewp │ │ │ ├── EFR32MG1P_leuart_dma.ewd │ │ │ ├── EFR32MG1P_leuart_dma.ewp │ │ │ └── leuart_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ ├── main_pg12.c │ │ │ └── main_s1.c │ ├── leuart_echo │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_leuart_echo.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_leuart_echo.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_leuart_echo.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_leuart_echo.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_leuart_echo.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_leuart_echo.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_leuart_echo.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_leuart_echo.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_leuart_echo.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_leuart_echo.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_leuart_echo.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_leuart_echo.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_leuart_echo.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_leuart_echo.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_leuart_echo.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_leuart_echo.xml │ │ │ ├── EFM32PG12B_leuart_echo.xml │ │ │ ├── EFM32PG1B_leuart_echo.xml │ │ │ ├── EFM32TG11B_leuart_echo.xml │ │ │ ├── EFR32BG12P_leuart_echo.xml │ │ │ ├── EFR32BG13P_leuart_echo.xml │ │ │ ├── EFR32BG1P_leuart_echo.xml │ │ │ ├── EFR32FG12P_leuart_echo.xml │ │ │ ├── EFR32FG13P_leuart_echo.xml │ │ │ ├── EFR32FG14P_leuart_echo.xml │ │ │ ├── EFR32FG1P_leuart_echo.xml │ │ │ ├── EFR32MG12P_leuart_echo.xml │ │ │ ├── EFR32MG13P_leuart_echo.xml │ │ │ ├── EFR32MG14P_leuart_echo.xml │ │ │ └── EFR32MG1P_leuart_echo.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_leuart_echo.ewd │ │ │ ├── EFM32GG11B_leuart_echo.ewp │ │ │ ├── EFM32PG12B_leuart_echo.ewd │ │ │ ├── EFM32PG12B_leuart_echo.ewp │ │ │ ├── EFM32PG1B_leuart_echo.ewd │ │ │ ├── EFM32PG1B_leuart_echo.ewp │ │ │ ├── EFM32TG11B_leuart_echo.ewd │ │ │ ├── EFM32TG11B_leuart_echo.ewp │ │ │ ├── EFR32BG12P_leuart_echo.ewd │ │ │ ├── EFR32BG12P_leuart_echo.ewp │ │ │ ├── EFR32BG13P_leuart_echo.ewd │ │ │ ├── EFR32BG13P_leuart_echo.ewp │ │ │ ├── EFR32BG1P_leuart_echo.ewd │ │ │ ├── EFR32BG1P_leuart_echo.ewp │ │ │ ├── EFR32FG12P_leuart_echo.ewd │ │ │ ├── EFR32FG12P_leuart_echo.ewp │ │ │ ├── EFR32FG13P_leuart_echo.ewd │ │ │ ├── EFR32FG13P_leuart_echo.ewp │ │ │ ├── EFR32FG14P_leuart_echo.ewd │ │ │ ├── EFR32FG14P_leuart_echo.ewp │ │ │ ├── EFR32FG1P_leuart_echo.ewd │ │ │ ├── EFR32FG1P_leuart_echo.ewp │ │ │ ├── EFR32MG12P_leuart_echo.ewd │ │ │ ├── EFR32MG12P_leuart_echo.ewp │ │ │ ├── EFR32MG13P_leuart_echo.ewd │ │ │ ├── EFR32MG13P_leuart_echo.ewp │ │ │ ├── EFR32MG14P_leuart_echo.ewd │ │ │ ├── EFR32MG14P_leuart_echo.ewp │ │ │ ├── EFR32MG1P_leuart_echo.ewd │ │ │ ├── EFR32MG1P_leuart_echo.ewp │ │ │ └── leuart_echo.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ ├── main_pg12.c │ │ │ └── main_s1.c │ └── leuart_half_duplex │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_leuart_half_duplex.slsproj │ │ ├── BRD4103A_EFR32BG12P_leuart_half_duplex.slsproj │ │ ├── BRD4104A_EFR32BG13P_leuart_half_duplex.slsproj │ │ ├── BRD4151A_EFR32MG1P_leuart_half_duplex.slsproj │ │ ├── BRD4159A_EFR32MG13P_leuart_half_duplex.slsproj │ │ ├── BRD4161A_EFR32MG12P_leuart_half_duplex.slsproj │ │ ├── BRD4169B_EFR32MG14P_leuart_half_duplex.slsproj │ │ ├── BRD4250A_EFR32FG1P_leuart_half_duplex.slsproj │ │ ├── BRD4253A_EFR32FG12P_leuart_half_duplex.slsproj │ │ ├── BRD4256A_EFR32FG13P_leuart_half_duplex.slsproj │ │ ├── BRD4257A_EFR32FG14P_leuart_half_duplex.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_leuart_half_duplex.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_leuart_half_duplex.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_leuart_half_duplex.slsproj │ │ └── SLSTK3701A_EFM32GG11B_leuart_half_duplex.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_leuart_half_duplex.xml │ │ ├── EFM32PG12B_leuart_half_duplex.xml │ │ ├── EFM32PG1B_leuart_half_duplex.xml │ │ ├── EFM32TG11B_leuart_half_duplex.xml │ │ ├── EFR32BG12P_leuart_half_duplex.xml │ │ ├── EFR32BG13P_leuart_half_duplex.xml │ │ ├── EFR32BG1P_leuart_half_duplex.xml │ │ ├── EFR32FG12P_leuart_half_duplex.xml │ │ ├── EFR32FG13P_leuart_half_duplex.xml │ │ ├── EFR32FG14P_leuart_half_duplex.xml │ │ ├── EFR32FG1P_leuart_half_duplex.xml │ │ ├── EFR32MG12P_leuart_half_duplex.xml │ │ ├── EFR32MG13P_leuart_half_duplex.xml │ │ ├── EFR32MG14P_leuart_half_duplex.xml │ │ └── EFR32MG1P_leuart_half_duplex.xml │ │ ├── iar │ │ ├── EFM32GG11B_leuart_half_duplex.ewd │ │ ├── EFM32GG11B_leuart_half_duplex.ewp │ │ ├── EFM32PG12B_leuart_half_duplex.ewd │ │ ├── EFM32PG12B_leuart_half_duplex.ewp │ │ ├── EFM32PG1B_leuart_half_duplex.ewd │ │ ├── EFM32PG1B_leuart_half_duplex.ewp │ │ ├── EFM32TG11B_leuart_half_duplex.ewd │ │ ├── EFM32TG11B_leuart_half_duplex.ewp │ │ ├── EFR32BG12P_leuart_half_duplex.ewd │ │ ├── EFR32BG12P_leuart_half_duplex.ewp │ │ ├── EFR32BG13P_leuart_half_duplex.ewd │ │ ├── EFR32BG13P_leuart_half_duplex.ewp │ │ ├── EFR32BG1P_leuart_half_duplex.ewd │ │ ├── EFR32BG1P_leuart_half_duplex.ewp │ │ ├── EFR32FG12P_leuart_half_duplex.ewd │ │ ├── EFR32FG12P_leuart_half_duplex.ewp │ │ ├── EFR32FG13P_leuart_half_duplex.ewd │ │ ├── EFR32FG13P_leuart_half_duplex.ewp │ │ ├── EFR32FG14P_leuart_half_duplex.ewd │ │ ├── EFR32FG14P_leuart_half_duplex.ewp │ │ ├── EFR32FG1P_leuart_half_duplex.ewd │ │ ├── EFR32FG1P_leuart_half_duplex.ewp │ │ ├── EFR32MG12P_leuart_half_duplex.ewd │ │ ├── EFR32MG12P_leuart_half_duplex.ewp │ │ ├── EFR32MG13P_leuart_half_duplex.ewd │ │ ├── EFR32MG13P_leuart_half_duplex.ewp │ │ ├── EFR32MG14P_leuart_half_duplex.ewd │ │ ├── EFR32MG14P_leuart_half_duplex.ewp │ │ ├── EFR32MG1P_leuart_half_duplex.ewd │ │ ├── EFR32MG1P_leuart_half_duplex.ewp │ │ └── leuart_half_duplex.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11_tg11.c │ │ ├── main_pg12.c │ │ └── main_s1.c ├── msc │ ├── debug_lock │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_debug_lock.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_debug_lock.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_debug_lock.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_debug_lock.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_debug_lock.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_debug_lock.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_debug_lock.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_debug_lock.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_debug_lock.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_debug_lock.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_debug_lock.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_debug_lock.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_debug_lock.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_debug_lock.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_debug_lock.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_debug_lock.xml │ │ │ ├── EFM32PG12B_debug_lock.xml │ │ │ ├── EFM32PG1B_debug_lock.xml │ │ │ ├── EFM32TG11_debug_lock.xml │ │ │ ├── EFR32BG12P_debug_lock.xml │ │ │ ├── EFR32BG13P_debug_lock.xml │ │ │ ├── EFR32BG1P_debug_lock.xml │ │ │ ├── EFR32FG12P_debug_lock.xml │ │ │ ├── EFR32FG13P_debug_lock.xml │ │ │ ├── EFR32FG14P_debug_lock.xml │ │ │ ├── EFR32FG1P_debug_lock.xml │ │ │ ├── EFR32MG12P_debug_lock.xml │ │ │ ├── EFR32MG13P_debug_lock.xml │ │ │ ├── EFR32MG14P_debug_lock.xml │ │ │ └── EFR32MG1P_debug_lock.xml │ │ ├── iar │ │ │ ├── EFM32GG11_debug_lock.ewd │ │ │ ├── EFM32GG11_debug_lock.ewp │ │ │ ├── EFM32PG12B_debug_lock.ewd │ │ │ ├── EFM32PG12B_debug_lock.ewp │ │ │ ├── EFM32PG1B_debug_lock.ewd │ │ │ ├── EFM32PG1B_debug_lock.ewp │ │ │ ├── EFM32TG11_debug_lock.ewd │ │ │ ├── EFM32TG11_debug_lock.ewp │ │ │ ├── EFR32BG12P_debug_lock.ewd │ │ │ ├── EFR32BG12P_debug_lock.ewp │ │ │ ├── EFR32BG13P_debug_lock.ewd │ │ │ ├── EFR32BG13P_debug_lock.ewp │ │ │ ├── EFR32BG1P_debug_lock.ewd │ │ │ ├── EFR32BG1P_debug_lock.ewp │ │ │ ├── EFR32FG12P_debug_lock.ewd │ │ │ ├── EFR32FG12P_debug_lock.ewp │ │ │ ├── EFR32FG13P_debug_lock.ewd │ │ │ ├── EFR32FG13P_debug_lock.ewp │ │ │ ├── EFR32FG14P_debug_lock.ewd │ │ │ ├── EFR32FG14P_debug_lock.ewp │ │ │ ├── EFR32FG1P_debug_lock.ewd │ │ │ ├── EFR32FG1P_debug_lock.ewp │ │ │ ├── EFR32MG12P_debug_lock.ewd │ │ │ ├── EFR32MG12P_debug_lock.ewp │ │ │ ├── EFR32MG13P_debug_lock.ewd │ │ │ ├── EFR32MG13P_debug_lock.ewp │ │ │ ├── EFR32MG14P_debug_lock.ewd │ │ │ ├── EFR32MG14P_debug_lock.ewp │ │ │ ├── EFR32MG1P_debug_lock.ewd │ │ │ ├── EFR32MG1P_debug_lock.ewp │ │ │ └── debug_lock.eww │ │ ├── readme_sysresetreq.txt │ │ ├── src │ │ │ ├── main_resetn.c │ │ │ └── main_sysresetreq.c │ │ └── test │ │ │ ├── EFM32_M0_unlock.jlink │ │ │ ├── EFM32_unlock.jlink │ │ │ ├── test_M0.bat │ │ │ └── test_M3-M4.bat │ └── msc_rw │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_msc_rw.slsproj │ │ ├── BRD4103A_EFR32BG12P_msc_rw.slsproj │ │ ├── BRD4104A_EFR32BG13P_msc_rw.slsproj │ │ ├── BRD4151A_EFR32MG1P_msc_rw.slsproj │ │ ├── BRD4159A_EFR32MG13P_msc_rw.slsproj │ │ ├── BRD4161A_EFR32MG12P_msc_rw.slsproj │ │ ├── BRD4169BA_EFR32MG14P_msc_rw.slsproj │ │ ├── BRD4250A_EFR32FG1P_msc_rw.slsproj │ │ ├── BRD4253A_EFR32FG12P_msc_rw.slsproj │ │ ├── BRD4256A_EFR32FG13P_msc_rw.slsproj │ │ ├── BRD4257A_EFR32FG14P_msc_rw.slsproj │ │ ├── SLSTK3301A_EFM32TG11_msc_rw.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_msc_rw.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_msc_rw.slsproj │ │ └── SLSTK3701A_EFM32GG11_msc_rw.slsproj │ │ ├── doc │ │ ├── EFM32GG11_msc_rw.xml │ │ ├── EFM32PG12B_msc_rw.xml │ │ ├── EFM32PG1B_msc_rw.xml │ │ ├── EFM32TG11_msc_rw.xml │ │ ├── EFR32BG12P_msc_rw.xml │ │ ├── EFR32BG13P_msc_rw.xml │ │ ├── EFR32BG1P_msc_rw.xml │ │ ├── EFR32FG12P_msc_rw.xml │ │ ├── EFR32FG13P_msc_rw.xml │ │ ├── EFR32FG14P_msc_rw.xml │ │ ├── EFR32FG1P_msc_rw.xml │ │ ├── EFR32MG12P_msc_rw.xml │ │ ├── EFR32MG13P_msc_rw.xml │ │ ├── EFR32MG14P_msc_rw.xml │ │ └── EFR32MG1P_msc_rw.xml │ │ ├── iar │ │ ├── EFM32GG11_msc_rw.ewd │ │ ├── EFM32GG11_msc_rw.ewp │ │ ├── EFM32PG12B_msc_rw.ewd │ │ ├── EFM32PG12B_msc_rw.ewp │ │ ├── EFM32PG1B_msc_rw.ewd │ │ ├── EFM32PG1B_msc_rw.ewp │ │ ├── EFM32TG11_msc_rw.ewd │ │ ├── EFM32TG11_msc_rw.ewp │ │ ├── EFR32BG12P_msc_rw.ewd │ │ ├── EFR32BG12P_msc_rw.ewp │ │ ├── EFR32BG13P_msc_rw.ewd │ │ ├── EFR32BG13P_msc_rw.ewp │ │ ├── EFR32BG1P_msc_rw.ewd │ │ ├── EFR32BG1P_msc_rw.ewp │ │ ├── EFR32FG12P_msc_rw.ewd │ │ ├── EFR32FG12P_msc_rw.ewp │ │ ├── EFR32FG13P_msc_rw.ewd │ │ ├── EFR32FG13P_msc_rw.ewp │ │ ├── EFR32FG14P_msc_rw.ewd │ │ ├── EFR32FG14P_msc_rw.ewp │ │ ├── EFR32FG1P_msc_rw.ewd │ │ ├── EFR32FG1P_msc_rw.ewp │ │ ├── EFR32MG12P_msc_rw.ewd │ │ ├── EFR32MG12P_msc_rw.ewp │ │ ├── EFR32MG13P_msc_rw.ewd │ │ ├── EFR32MG13P_msc_rw.ewp │ │ ├── EFR32MG14P_msc_rw.ewd │ │ ├── EFR32MG14P_msc_rw.ewp │ │ ├── EFR32MG1P_msc_rw.ewd │ │ ├── EFR32MG1P_msc_rw.ewp │ │ └── msc_rw.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── opamp │ ├── opamp_cascaded_inverting │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_cascaded_inverting.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_cascaded_inverting.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_cascaded_inverting.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_cascaded_inverting.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_cascaded_inverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_cascaded_inverting.xml │ │ │ ├── EFM32PG12B_opamp_cascaded_inverting.xml │ │ │ ├── EFM32TG11B_opamp_cascaded_inverting.xml │ │ │ ├── EFR32BG12P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32BG13P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32FG12P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32FG13P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32FG14P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32MG12P_opamp_cascaded_inverting.xml │ │ │ ├── EFR32MG13P_opamp_cascaded_inverting.xml │ │ │ └── EFR32MG14P_opamp_cascaded_inverting.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32GG11B_opamp_cascaded_inverting.ewp │ │ │ ├── EFM32PG12B_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32PG12B_opamp_cascaded_inverting.ewp │ │ │ ├── EFM32TG11B_opamp_cascaded_inverting.ewd │ │ │ ├── EFM32TG11B_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32BG12P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32BG12P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32BG13P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32BG13P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32FG12P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32FG12P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32FG13P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32FG13P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32FG14P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32FG14P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32MG12P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32MG12P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32MG13P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32MG13P_opamp_cascaded_inverting.ewp │ │ │ ├── EFR32MG14P_opamp_cascaded_inverting.ewd │ │ │ ├── EFR32MG14P_opamp_cascaded_inverting.ewp │ │ │ └── opamp_cascaded_inverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_pg12.c │ │ │ ├── main_radio12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ ├── opamp_cascaded_noninverting │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_cascaded_noninverting.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_cascaded_noninverting.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_cascaded_noninverting.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_cascaded_noninverting.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_cascaded_noninverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_cascaded_noninverting.xml │ │ │ ├── EFM32PG12B_opamp_cascaded_noninverting.xml │ │ │ ├── EFM32TG11B_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32BG12P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32BG13P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32FG12P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32FG13P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32FG14P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32MG12P_opamp_cascaded_noninverting.xml │ │ │ ├── EFR32MG13P_opamp_cascaded_noninverting.xml │ │ │ └── EFR32MG14P_opamp_cascaded_noninverting.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32GG11B_opamp_cascaded_noninverting.ewp │ │ │ ├── EFM32PG12B_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32PG12B_opamp_cascaded_noninverting.ewp │ │ │ ├── EFM32TG11B_opamp_cascaded_noninverting.ewd │ │ │ ├── EFM32TG11B_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32BG12P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32BG12P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32BG13P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32BG13P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32FG12P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32FG12P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32FG13P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32FG13P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32FG14P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32FG14P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32MG12P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32MG12P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32MG13P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32MG13P_opamp_cascaded_noninverting.ewp │ │ │ ├── EFR32MG14P_opamp_cascaded_noninverting.ewd │ │ │ ├── EFR32MG14P_opamp_cascaded_noninverting.ewp │ │ │ └── opamp_cascaded_noninverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ ├── opamp_dac_to_opamp │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_dac_to_opamp.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_dac_to_opamp.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_dac_to_opamp.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_dac_to_opamp.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_dac_to_opamp.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_dac_to_opamp.xml │ │ │ ├── EFM32PG12B_opamp_dac_to_opamp.xml │ │ │ ├── EFM32TG11B_opamp_dac_to_opamp.xml │ │ │ ├── EFR32BG12P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32BG13P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32FG12P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32FG13P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32FG14P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32MG12P_opamp_dac_to_opamp.xml │ │ │ ├── EFR32MG13P_opamp_dac_to_opamp.xml │ │ │ └── EFR32MG14P_opamp_dac_to_opamp.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32GG11B_opamp_dac_to_opamp.ewp │ │ │ ├── EFM32PG12B_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32PG12B_opamp_dac_to_opamp.ewp │ │ │ ├── EFM32TG11B_opamp_dac_to_opamp.ewd │ │ │ ├── EFM32TG11B_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32BG12P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32BG12P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32BG13P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32BG13P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32FG12P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32FG12P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32FG13P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32FG13P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32FG14P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32FG14P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32MG12P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32MG12P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32MG13P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32MG13P_opamp_dac_to_opamp.ewp │ │ │ ├── EFR32MG14P_opamp_dac_to_opamp.ewd │ │ │ ├── EFR32MG14P_opamp_dac_to_opamp.ewp │ │ │ └── opamp_dac_to_opamp.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ ├── opamp_differential_three │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_differential_three.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_differential_three.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_differential_three.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_differential_three.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_differential_three.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_differential_three.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_differential_three.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_differential_three.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_differential_three.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_differential_three.xml │ │ │ ├── EFM32PG12B_opamp_differential_three.xml │ │ │ ├── EFM32TG11B_opamp_differential_three.xml │ │ │ ├── EFR32BG12P_opamp_differential_three.xml │ │ │ ├── EFR32BG13P_opamp_differential_three.xml │ │ │ ├── EFR32FG12P_opamp_differential_three.xml │ │ │ ├── EFR32FG13P_opamp_differential_three.xml │ │ │ ├── EFR32MG12P_opamp_differential_three.xml │ │ │ └── EFR32MG13P_opamp_differential_three.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_differential_three.ewd │ │ │ ├── EFM32GG11B_opamp_differential_three.ewp │ │ │ ├── EFM32PG12B_opamp_differential_three.ewd │ │ │ ├── EFM32PG12B_opamp_differential_three.ewp │ │ │ ├── EFM32TG11B_opamp_differential_three.ewd │ │ │ ├── EFM32TG11B_opamp_differential_three.ewp │ │ │ ├── EFR32BG12P_opamp_differential_three.ewd │ │ │ ├── EFR32BG12P_opamp_differential_three.ewp │ │ │ ├── EFR32BG13P_opamp_differential_three.ewd │ │ │ ├── EFR32BG13P_opamp_differential_three.ewp │ │ │ ├── EFR32FG12P_opamp_differential_three.ewd │ │ │ ├── EFR32FG12P_opamp_differential_three.ewp │ │ │ ├── EFR32FG13P_opamp_differential_three.ewd │ │ │ ├── EFR32FG13P_opamp_differential_three.ewp │ │ │ ├── EFR32MG12P_opamp_differential_three.ewd │ │ │ ├── EFR32MG12P_opamp_differential_three.ewp │ │ │ ├── EFR32MG13P_opamp_differential_three.ewd │ │ │ ├── EFR32MG13P_opamp_differential_three.ewp │ │ │ └── opamp_differential_three.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio13.c │ │ │ └── main_tg11.c │ ├── opamp_differential_two │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_differential_two.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_differential_two.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_differential_two.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_differential_two.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_differential_two.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_differential_two.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_differential_two.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_differential_two.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_differential_two.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_differential_two.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_differential_two.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_differential_two.xml │ │ │ ├── EFM32PG12B_opamp_differential_two.xml │ │ │ ├── EFM32TG11B_opamp_differential_two.xml │ │ │ ├── EFR32BG12P_opamp_differential_two.xml │ │ │ ├── EFR32BG13P_opamp_differential_two.xml │ │ │ ├── EFR32FG12P_opamp_differential_two.xml │ │ │ ├── EFR32FG13P_opamp_differential_two.xml │ │ │ ├── EFR32FG14P_opamp_differential_two.xml │ │ │ ├── EFR32MG12P_opamp_differential_two.xml │ │ │ ├── EFR32MG13P_opamp_differential_two.xml │ │ │ └── EFR32MG14P_opamp_differential_two.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_differential_two.ewd │ │ │ ├── EFM32GG11B_opamp_differential_two.ewp │ │ │ ├── EFM32PG12B_opamp_differential_two.ewd │ │ │ ├── EFM32PG12B_opamp_differential_two.ewp │ │ │ ├── EFM32TG11B_opamp_differential_two.ewd │ │ │ ├── EFM32TG11B_opamp_differential_two.ewp │ │ │ ├── EFR32BG12P_opamp_differential_two.ewd │ │ │ ├── EFR32BG12P_opamp_differential_two.ewp │ │ │ ├── EFR32BG13P_opamp_differential_two.ewd │ │ │ ├── EFR32BG13P_opamp_differential_two.ewp │ │ │ ├── EFR32FG12P_opamp_differential_two.ewd │ │ │ ├── EFR32FG12P_opamp_differential_two.ewp │ │ │ ├── EFR32FG13P_opamp_differential_two.ewd │ │ │ ├── EFR32FG13P_opamp_differential_two.ewp │ │ │ ├── EFR32FG14P_opamp_differential_two.ewd │ │ │ ├── EFR32FG14P_opamp_differential_two.ewp │ │ │ ├── EFR32MG12P_opamp_differential_two.ewd │ │ │ ├── EFR32MG12P_opamp_differential_two.ewp │ │ │ ├── EFR32MG13P_opamp_differential_two.ewd │ │ │ ├── EFR32MG13P_opamp_differential_two.ewp │ │ │ ├── EFR32MG14P_opamp_differential_two.ewd │ │ │ ├── EFR32MG14P_opamp_differential_two.ewp │ │ │ └── opamp_differential_two.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio1314.c │ │ │ └── main_tg11.c │ ├── opamp_inverting │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_inverting.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_inverting.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_inverting.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_inverting.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_inverting.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_inverting.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_inverting.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_inverting.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_inverting.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_inverting.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_inverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_inverting.xml │ │ │ ├── EFM32PG12B_opamp_inverting.xml │ │ │ ├── EFM32TG11B_opamp_inverting.xml │ │ │ ├── EFR32BG12P_opamp_inverting.xml │ │ │ ├── EFR32BG13P_opamp_inverting.xml │ │ │ ├── EFR32FG12P_opamp_inverting.xml │ │ │ ├── EFR32FG13P_opamp_inverting.xml │ │ │ ├── EFR32FG14P_opamp_inverting.xml │ │ │ ├── EFR32MG12P_opamp_inverting.xml │ │ │ ├── EFR32MG13P_opamp_inverting.xml │ │ │ └── EFR32MG14P_opamp_inverting.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_inverting.ewd │ │ │ ├── EFM32GG11B_opamp_inverting.ewp │ │ │ ├── EFM32PG12B_opamp_inverting.ewd │ │ │ ├── EFM32PG12B_opamp_inverting.ewp │ │ │ ├── EFM32TG11B_opamp_inverting.ewd │ │ │ ├── EFM32TG11B_opamp_inverting.ewp │ │ │ ├── EFR32BG12P_opamp_inverting.ewd │ │ │ ├── EFR32BG12P_opamp_inverting.ewp │ │ │ ├── EFR32BG13P_opamp_inverting.ewd │ │ │ ├── EFR32BG13P_opamp_inverting.ewp │ │ │ ├── EFR32FG12P_opamp_inverting.ewd │ │ │ ├── EFR32FG12P_opamp_inverting.ewp │ │ │ ├── EFR32FG13P_opamp_inverting.ewd │ │ │ ├── EFR32FG13P_opamp_inverting.ewp │ │ │ ├── EFR32FG14P_opamp_inverting.ewd │ │ │ ├── EFR32FG14P_opamp_inverting.ewp │ │ │ ├── EFR32MG12P_opamp_inverting.ewd │ │ │ ├── EFR32MG12P_opamp_inverting.ewp │ │ │ ├── EFR32MG13P_opamp_inverting.ewd │ │ │ ├── EFR32MG13P_opamp_inverting.ewp │ │ │ ├── EFR32MG14P_opamp_inverting.ewd │ │ │ ├── EFR32MG14P_opamp_inverting.ewp │ │ │ └── opamp_inverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_pg12.c │ │ │ ├── main_radio12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ ├── opamp_noninverting │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_noninverting.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_noninverting.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_noninverting.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_noninverting.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_noninverting.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_noninverting.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_noninverting.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_noninverting.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_noninverting.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_noninverting.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_noninverting.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_noninverting.xml │ │ │ ├── EFM32PG12B_opamp_noninverting.xml │ │ │ ├── EFM32TG11B_opamp_noninverting.xml │ │ │ ├── EFR32BG12P_opamp_noninverting.xml │ │ │ ├── EFR32BG13P_opamp_noninverting.xml │ │ │ ├── EFR32FG12P_opamp_noninverting.xml │ │ │ ├── EFR32FG13P_opamp_noninverting.xml │ │ │ ├── EFR32FG14P_opamp_noninverting.xml │ │ │ ├── EFR32MG12P_opamp_noninverting.xml │ │ │ ├── EFR32MG13P_opamp_noninverting.xml │ │ │ └── EFR32MG14P_opamp_noninverting.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_noninverting.ewd │ │ │ ├── EFM32GG11B_opamp_noninverting.ewp │ │ │ ├── EFM32PG12B_opamp_noninverting.ewd │ │ │ ├── EFM32PG12B_opamp_noninverting.ewp │ │ │ ├── EFM32TG11B_opamp_noninverting.ewd │ │ │ ├── EFM32TG11B_opamp_noninverting.ewp │ │ │ ├── EFR32BG12P_opamp_noninverting.ewd │ │ │ ├── EFR32BG12P_opamp_noninverting.ewp │ │ │ ├── EFR32BG13P_opamp_noninverting.ewd │ │ │ ├── EFR32BG13P_opamp_noninverting.ewp │ │ │ ├── EFR32FG12P_opamp_noninverting.ewd │ │ │ ├── EFR32FG12P_opamp_noninverting.ewp │ │ │ ├── EFR32FG13P_opamp_noninverting.ewd │ │ │ ├── EFR32FG13P_opamp_noninverting.ewp │ │ │ ├── EFR32FG14P_opamp_noninverting.ewd │ │ │ ├── EFR32FG14P_opamp_noninverting.ewp │ │ │ ├── EFR32MG12P_opamp_noninverting.ewd │ │ │ ├── EFR32MG12P_opamp_noninverting.ewp │ │ │ ├── EFR32MG13P_opamp_noninverting.ewd │ │ │ ├── EFR32MG13P_opamp_noninverting.ewp │ │ │ ├── EFR32MG14P_opamp_noninverting.ewd │ │ │ ├── EFR32MG14P_opamp_noninverting.ewp │ │ │ └── opamp_noninverting.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ ├── opamp_to_adc │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_opamp_to_adc.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_opamp_to_adc.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_opamp_to_adc.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_opamp_to_adc.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_opamp_to_adc.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_opamp_to_adc.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_opamp_to_adc.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_opamp_to_adc.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_opamp_to_adc.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_opamp_to_adc.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_opamp_to_adc.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_opamp_to_adc.xml │ │ │ ├── EFM32PG12B_opamp_to_adc.xml │ │ │ ├── EFM32TG11B_opamp_to_adc.xml │ │ │ ├── EFR32BG12P_opamp_to_adc.xml │ │ │ ├── EFR32BG13P_opamp_to_adc.xml │ │ │ ├── EFR32FG12P_opamp_to_adc.xml │ │ │ ├── EFR32FG13P_opamp_to_adc.xml │ │ │ ├── EFR32FG14P_opamp_to_adc.xml │ │ │ ├── EFR32MG12P_opamp_to_adc.xml │ │ │ ├── EFR32MG13P_opamp_to_adc.xml │ │ │ └── EFR32MG14P_opamp_to_adc.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_opamp_to_adc.ewd │ │ │ ├── EFM32GG11B_opamp_to_adc.ewp │ │ │ ├── EFM32PG12B_opamp_to_adc.ewd │ │ │ ├── EFM32PG12B_opamp_to_adc.ewp │ │ │ ├── EFM32TG11B_opamp_to_adc.ewd │ │ │ ├── EFM32TG11B_opamp_to_adc.ewp │ │ │ ├── EFR32BG12P_opamp_to_adc.ewd │ │ │ ├── EFR32BG12P_opamp_to_adc.ewp │ │ │ ├── EFR32BG13P_opamp_to_adc.ewd │ │ │ ├── EFR32BG13P_opamp_to_adc.ewp │ │ │ ├── EFR32FG12P_opamp_to_adc.ewd │ │ │ ├── EFR32FG12P_opamp_to_adc.ewp │ │ │ ├── EFR32FG13P_opamp_to_adc.ewd │ │ │ ├── EFR32FG13P_opamp_to_adc.ewp │ │ │ ├── EFR32FG14P_opamp_to_adc.ewd │ │ │ ├── EFR32FG14P_opamp_to_adc.ewp │ │ │ ├── EFR32MG12P_opamp_to_adc.ewd │ │ │ ├── EFR32MG12P_opamp_to_adc.ewp │ │ │ ├── EFR32MG13P_opamp_to_adc.ewd │ │ │ ├── EFR32MG13P_opamp_to_adc.ewp │ │ │ ├── EFR32MG14P_opamp_to_adc.ewd │ │ │ ├── EFR32MG14P_opamp_to_adc.ewp │ │ │ └── opamp_to_adc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_radio12_pg12.c │ │ │ ├── main_radio13.c │ │ │ ├── main_radio14.c │ │ │ └── main_tg11.c │ └── opamp_unity_gain │ │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_opamp_unity_gain.slsproj │ │ ├── BRD4104A_EFR32BG13P_opamp_unity_gain.slsproj │ │ ├── BRD4159A_EFR32MG13P_opamp_unity_gain.slsproj │ │ ├── BRD4161A_EFR32MG12P_opamp_unity_gain.slsproj │ │ ├── BRD4169B_EFR32MG14P_opamp_unity_gain.slsproj │ │ ├── BRD4253A_EFR32FG12P_opamp_unity_gain.slsproj │ │ ├── BRD4256A_EFR32FG13P_opamp_unity_gain.slsproj │ │ ├── BRD4257A_EFR32FG14P_opamp_unity_gain.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_opamp_unity_gain.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_opamp_unity_gain.slsproj │ │ └── SLSTK3701A_EFM32GG11B_opamp_unity_gain.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_opamp_unity_gain.xml │ │ ├── EFM32PG12B_opamp_unity_gain.xml │ │ ├── EFM32TG11B_opamp_unity_gain.xml │ │ ├── EFR32BG12P_opamp_unity_gain.xml │ │ ├── EFR32BG13P_opamp_unity_gain.xml │ │ ├── EFR32FG12P_opamp_unity_gain.xml │ │ ├── EFR32FG13P_opamp_unity_gain.xml │ │ ├── EFR32FG14P_opamp_unity_gain.xml │ │ ├── EFR32MG12P_opamp_unity_gain.xml │ │ ├── EFR32MG13P_opamp_unity_gain.xml │ │ └── EFR32MG14P_opamp_unity_gain.xml │ │ ├── iar │ │ ├── EFM32GG11B_opamp_unity_gain.ewd │ │ ├── EFM32GG11B_opamp_unity_gain.ewp │ │ ├── EFM32PG12B_opamp_unity_gain.ewd │ │ ├── EFM32PG12B_opamp_unity_gain.ewp │ │ ├── EFM32TG11B_opamp_unity_gain.ewd │ │ ├── EFM32TG11B_opamp_unity_gain.ewp │ │ ├── EFR32BG12P_opamp_unity_gain.ewd │ │ ├── EFR32BG12P_opamp_unity_gain.ewp │ │ ├── EFR32BG13P_opamp_unity_gain.ewd │ │ ├── EFR32BG13P_opamp_unity_gain.ewp │ │ ├── EFR32FG12P_opamp_unity_gain.ewd │ │ ├── EFR32FG12P_opamp_unity_gain.ewp │ │ ├── EFR32FG13P_opamp_unity_gain.ewd │ │ ├── EFR32FG13P_opamp_unity_gain.ewp │ │ ├── EFR32FG14P_opamp_unity_gain.ewd │ │ ├── EFR32FG14P_opamp_unity_gain.ewp │ │ ├── EFR32MG12P_opamp_unity_gain.ewd │ │ ├── EFR32MG12P_opamp_unity_gain.ewp │ │ ├── EFR32MG13P_opamp_unity_gain.ewd │ │ ├── EFR32MG13P_opamp_unity_gain.ewp │ │ ├── EFR32MG14P_opamp_unity_gain.ewd │ │ ├── EFR32MG14P_opamp_unity_gain.ewp │ │ └── opamp_unity_gain.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11.c │ │ ├── main_radio12_pg12.c │ │ ├── main_radio13.c │ │ ├── main_radio14.c │ │ └── main_tg11.c ├── pcnt │ ├── pcnt_extclk_qudarature │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pcnt_extclk_quadrature.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_pcnt_extclk_quadrature.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_extclk_quadrature.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_extclk_quadrature.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_pcnt_extclk_quadrature.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32PG12B_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32PG1B_pcnt_extclk_quadrature.xml │ │ │ ├── EFM32TG11_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32BG12P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32BG13P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32BG1P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32FG12P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32FG13P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32FG14P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32FG1P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32MG12P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32MG13P_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32MG14P_pcnt_extclk_quadrature.xml │ │ │ └── EFR32MG1P_pcnt_extclk_quadrature.xml │ │ ├── iar │ │ │ ├── EFM32GG11_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32GG11_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32PG12B_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32PG12B_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32PG1B_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32PG1B_pcnt_extclk_quadrature.ewp │ │ │ ├── EFM32TG11_pcnt_extclk_quadrature.ewd │ │ │ ├── EFM32TG11_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32BG12P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32BG12P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32BG13P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32BG13P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32BG1P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32BG1P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32FG12P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32FG12P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32FG13P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32FG13P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32FG14P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32FG14P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32FG1P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32FG1P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32MG12P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32MG12P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32MG13P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32MG13P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32MG14P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32MG14P_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32MG1P_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32MG1P_pcnt_extclk_quadrature.ewp │ │ │ └── pcnt_extclk_quadrature.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ └── main_s1.c │ ├── pcnt_extclk_single_overflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pcnt_extclk_single_overflow.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_pcnt_extclk_single_overflow.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_extclk_single_overflow.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_extclk_single_overflow.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_pcnt_extclk_single_overflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32PG12B_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32PG1B_pcnt_extclk_single_overflow.xml │ │ │ ├── EFM32TG11_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32BG12P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32BG13P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32BG1P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32FG12P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32FG13P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32FG14P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32FG1P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32MG12P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32MG13P_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32MG14P_pcnt_extclk_single_overflow.xml │ │ │ └── EFR32MG1P_pcnt_extclk_single_overflow.xml │ │ ├── iar │ │ │ ├── EFM32GG11_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32GG11_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32PG12B_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32PG12B_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32PG1B_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32PG1B_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFM32TG11_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFM32TG11_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32BG12P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32BG12P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32BG13P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32BG13P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32BG1P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32BG1P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32FG12P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32FG12P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32FG13P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32FG13P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32FG14P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32FG14P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32FG1P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32FG1P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32MG12P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32MG12P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32MG13P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32MG13P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32MG14P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32MG14P_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32MG1P_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32MG1P_pcnt_extclk_single_overflow.ewp │ │ │ └── pcnt_extclk_single_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ └── main_s1.c │ ├── pcnt_extclk_single_underflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pcnt_extclk_single_underflow.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_pcnt_extclk_single_underflow.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_extclk_single_underflow.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_extclk_single_underflow.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_pcnt_extclk_single_underflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32PG12B_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32PG1B_pcnt_extclk_single_underflow.xml │ │ │ ├── EFM32TG11_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32BG12P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32BG13P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32BG1P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32FG12P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32FG13P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32FG14P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32FG1P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32MG12P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32MG13P_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32MG14P_pcnt_extclk_single_underflow.xml │ │ │ └── EFR32MG1P_pcnt_extclk_single_underflow.xml │ │ ├── iar │ │ │ ├── EFM32GG11_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32GG11_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32PG12B_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32PG12B_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32PG1B_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32PG1B_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFM32TG11_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFM32TG11_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32BG12P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32BG12P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32BG13P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32BG13P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32BG1P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32BG1P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32FG12P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32FG12P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32FG13P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32FG13P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32FG14P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32FG14P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32FG1P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32FG1P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32MG12P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32MG12P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32MG13P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32MG13P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32MG14P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32MG14P_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32MG1P_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32MG1P_pcnt_extclk_single_underflow.ewp │ │ │ └── pcnt_extclk_single_underflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ └── main_s1.c │ ├── pcnt_single_oversampling_overflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_single_oversampling_overflow.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_pcnt_single_oversampling_overflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFM32TG11_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_overflow.xml │ │ │ └── EFR32MG1P_pcnt_single_oversampling_overflow.xml │ │ ├── iar │ │ │ ├── EFM32GG11_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32GG11_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFM32TG11_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFM32TG11_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32MG1P_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32MG1P_pcnt_single_oversampling_overflow.ewp │ │ │ └── pcnt_single_oversampling_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ └── main_s1.c │ ├── pcnt_single_oversampling_underflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_single_oversampling_underflow.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_single_oversampling_underflow.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_pcnt_single_oversampling_underflow.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFM32TG11_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_underflow.xml │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_underflow.xml │ │ │ └── EFR32MG1P_pcnt_single_oversampling_underflow.xml │ │ ├── iar │ │ │ ├── EFM32GG11_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFM32GG11_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFM32PG12B_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFM32PG1B_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFM32TG11_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFM32TG11_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32BG12P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32BG13P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32BG1P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32FG12P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32FG13P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32FG14P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32FG1P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32MG12P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32MG13P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32MG14P_pcnt_single_oversampling_underflow.ewp │ │ │ ├── EFR32MG1P_pcnt_single_oversampling_underflow.ewd │ │ │ ├── EFR32MG1P_pcnt_single_oversampling_underflow.ewp │ │ │ └── pcnt_single_oversampling_underflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ └── main_s1.c │ └── pcnt_trigger_compare_clear_prs │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4103A_EFR32BG12P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4104A_EFR32BG13P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4151A_EFR32MG1P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4159A_EFR32MG13P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4161A_EFR32MG12P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4169B_EFR32MG14P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4250A_EFR32FG1P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4253A_EFR32FG12P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4256A_EFR32FG13P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── BRD4257A_EFR32FG14P_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── SLSTK3301A_EFM32TG11_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_pcnt_trigger_compare_clear_prs.slsproj │ │ └── SLSTK3701A_EFM32GG11_pcnt_trigger_compare_clear_prs.slsproj │ │ ├── doc │ │ ├── EFM32GG11_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFM32PG12B_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFM32PG1B_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFM32TG11_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32BG12P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32BG13P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32BG1P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32FG12P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32FG13P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32FG14P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32FG1P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32MG12P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32MG13P_pcnt_trigger_compare_clear_prs.xml │ │ ├── EFR32MG14P_pcnt_trigger_compare_clear_prs.xml │ │ └── EFR32MG1P_pcnt_trigger_compare_clear_prs.xml │ │ ├── iar │ │ ├── EFM32GG11_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFM32GG11_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFM32PG12B_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFM32PG12B_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFM32PG1B_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFM32PG1B_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFM32TG11_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFM32TG11_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32BG12P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32BG12P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32BG13P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32BG13P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32BG1P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32BG1P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32FG12P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32FG12P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32FG13P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32FG13P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32FG14P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32FG14P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32FG1P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32FG1P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32MG12P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32MG12P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32MG13P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32MG13P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32MG14P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32MG14P_pcnt_trigger_compare_clear_prs.ewp │ │ ├── EFR32MG1P_pcnt_trigger_compare_clear_prs.ewd │ │ ├── EFR32MG1P_pcnt_trigger_compare_clear_prs.ewp │ │ └── pcnt_trigger_compare_clear_prs.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_gg11.c ├── prs │ └── logic_unit │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_logic_unit.slsproj │ │ ├── BRD4103A_EFR32BG12P_logic_unit.slsproj │ │ ├── BRD4104A_EFR32BG13P_logic_unit.slsproj │ │ ├── BRD4151A_EFR32MG1P_logic_unit.slsproj │ │ ├── BRD4159A_EFR32MG13P_logic_unit.slsproj │ │ ├── BRD4161A_EFR32MG12P_logic_unit.slsproj │ │ ├── BRD4169A_EFR32MG14P_logic_unit.slsproj │ │ ├── BRD4250A_EFR32FG1P_logic_unit.slsproj │ │ ├── BRD4253A_EFR32FG12P_logic_unit.slsproj │ │ ├── BRD4256A_EFR32FG13P_logic_unit.slsproj │ │ ├── BRD4257A_EFR32FG14P_logic_unit.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_logic_unit.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_logic_unit.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_logic_unit.slsproj │ │ └── SLSTK3701A_EFM32GG11B_logic_unit.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_logic_unit.xml │ │ ├── EFM32PG12B_logic_unit.xml │ │ ├── EFM32PG1B_logic_unit.xml │ │ ├── EFM32TG11B_logic_unit.xml │ │ ├── EFR32BG12P_logic_unit.xml │ │ ├── EFR32BG13P_logic_unit.xml │ │ ├── EFR32BG1P_logic_unit.xml │ │ ├── EFR32FG12P_logic_unit.xml │ │ ├── EFR32FG13P_logic_unit.xml │ │ ├── EFR32FG14P_logic_unit.xml │ │ ├── EFR32FG1P_logic_unit.xml │ │ ├── EFR32MG12P_logic_unit.xml │ │ ├── EFR32MG13P_logic_unit.xml │ │ ├── EFR32MG14P_logic_unit.xml │ │ └── EFR32MG1P_logic_unit.xml │ │ ├── iar │ │ ├── EFM32GG11B_logic_unit.ewd │ │ ├── EFM32GG11B_logic_unit.ewp │ │ ├── EFM32PG12B_logic_unit.ewd │ │ ├── EFM32PG12B_logic_unit.ewp │ │ ├── EFM32PG1B_logic_unit.ewd │ │ ├── EFM32PG1B_logic_unit.ewp │ │ ├── EFM32TG11B_logic_unit.ewd │ │ ├── EFM32TG11B_logic_unit.ewp │ │ ├── EFR32BG12P_logic_unit.ewd │ │ ├── EFR32BG12P_logic_unit.ewp │ │ ├── EFR32BG13P_logic_unit.ewd │ │ ├── EFR32BG13P_logic_unit.ewp │ │ ├── EFR32BG1P_logic_unit.ewd │ │ ├── EFR32BG1P_logic_unit.ewp │ │ ├── EFR32FG12P_logic_unit.ewd │ │ ├── EFR32FG12P_logic_unit.ewp │ │ ├── EFR32FG13P_logic_unit.ewd │ │ ├── EFR32FG13P_logic_unit.ewp │ │ ├── EFR32FG14P_logic_unit.ewd │ │ ├── EFR32FG14P_logic_unit.ewp │ │ ├── EFR32FG1P_logic_unit.ewd │ │ ├── EFR32FG1P_logic_unit.ewp │ │ ├── EFR32MG12P_logic_unit.ewd │ │ ├── EFR32MG12P_logic_unit.ewp │ │ ├── EFR32MG13P_logic_unit.ewd │ │ ├── EFR32MG13P_logic_unit.ewp │ │ ├── EFR32MG14P_logic_unit.ewd │ │ ├── EFR32MG14P_logic_unit.ewp │ │ ├── EFR32MG1P_logic_unit.ewd │ │ ├── EFR32MG1P_logic_unit.ewp │ │ └── logic_unit.eww │ │ ├── readme.txt │ │ └── src │ │ ├── em_prs.c │ │ ├── main.c │ │ ├── main_gg11.c │ │ └── main_tg11.c ├── rmu │ ├── rmu_get_reset_cause │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_rmu_get_reset_cause.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_rmu_get_reset_cause.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_rmu_get_reset_cause.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_rmu_get_reset_cause.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_rmu_get_reset_cause.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_rmu_get_reset_cause.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_rmu_get_reset_cause.xml │ │ │ ├── EFM32PG12B_rmu_get_reset_cause.xml │ │ │ ├── EFM32PG1B_rmu_get_reset_cause.xml │ │ │ ├── EFM32TG11_rmu_get_reset_cause.xml │ │ │ ├── EFR32BG12P_rmu_get_reset_cause.xml │ │ │ ├── EFR32BG13P_rmu_get_reset_cause.xml │ │ │ ├── EFR32BG1P_rmu_get_reset_cause.xml │ │ │ ├── EFR32FG12P_rmu_get_reset_cause.xml │ │ │ ├── EFR32FG13P_rmu_get_reset_cause.xml │ │ │ ├── EFR32FG14P_rmu_get_reset_cause.xml │ │ │ ├── EFR32FG1P_rmu_get_reset_cause.xml │ │ │ ├── EFR32MG12P_rmu_get_reset_cause.xml │ │ │ ├── EFR32MG13P_rmu_get_reset_cause.xml │ │ │ ├── EFR32MG14P_rmu_get_reset_cause.xml │ │ │ └── EFR32MG1P_rmu_get_reset_cause.xml │ │ ├── iar │ │ │ ├── EFM32GG11_rmu_get_reset_cause.ewd │ │ │ ├── EFM32GG11_rmu_get_reset_cause.ewp │ │ │ ├── EFM32PG12B_rmu_get_reset_cause.ewd │ │ │ ├── EFM32PG12B_rmu_get_reset_cause.ewp │ │ │ ├── EFM32PG1B_rmu_get_reset_cause.ewd │ │ │ ├── EFM32PG1B_rmu_get_reset_cause.ewp │ │ │ ├── EFM32TG11_rmu_get_reset_cause.ewd │ │ │ ├── EFM32TG11_rmu_get_reset_cause.ewp │ │ │ ├── EFR32BG12P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32BG12P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32BG13P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32BG13P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32BG1P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32BG1P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32FG12P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32FG12P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32FG13P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32FG13P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32FG14P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32FG14P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32FG1P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32FG1P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32MG12P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32MG12P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32MG13P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32MG13P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32MG14P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32MG14P_rmu_get_reset_cause.ewp │ │ │ ├── EFR32MG1P_rmu_get_reset_cause.ewd │ │ │ ├── EFR32MG1P_rmu_get_reset_cause.ewp │ │ │ └── rmu_get_reset_cause.eww │ │ ├── readme_cryo.txt │ │ ├── readme_cryogg11.txt │ │ ├── readme_cryotg11.txt │ │ └── src │ │ │ ├── main_cryo.c │ │ │ ├── main_cryogg11.c │ │ │ └── main_cryotg11.c │ ├── rmu_pin_reset_extended │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_rmu_pin_reset_extended.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_rmu_pin_reset_extended.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_rmu_pin_reset_extended.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_rmu_pin_reset_extended.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_rmu_pin_reset_extended.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_rmu_pin_reset_extended.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_rmu_pin_reset_extended.xml │ │ │ ├── EFM32PG12B_rmu_pin_reset_extended.xml │ │ │ ├── EFM32PG1B_rmu_pin_reset_extended.xml │ │ │ ├── EFM32TG11_rmu_pin_reset_extended.xml │ │ │ ├── EFR32BG12P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32BG13P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32BG1P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32FG12P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32FG13P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32FG14P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32FG1P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32MG12P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32MG13P_rmu_pin_reset_extended.xml │ │ │ ├── EFR32MG14P_rmu_pin_reset_extended.xml │ │ │ └── EFR32MG1P_rmu_pin_reset_extended.xml │ │ ├── iar │ │ │ ├── EFM32GG11_rmu_pin_reset_extended.ewd │ │ │ ├── EFM32GG11_rmu_pin_reset_extended.ewp │ │ │ ├── EFM32PG12B_rmu_pin_reset_extended.ewd │ │ │ ├── EFM32PG12B_rmu_pin_reset_extended.ewp │ │ │ ├── EFM32PG1B_rmu_pin_reset_extended.ewd │ │ │ ├── EFM32PG1B_rmu_pin_reset_extended.ewp │ │ │ ├── EFM32TG11_rmu_pin_reset_extended.ewd │ │ │ ├── EFM32TG11_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32BG12P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32BG12P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32BG13P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32BG13P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32BG1P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32BG1P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32FG12P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32FG12P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32FG13P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32FG13P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32FG14P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32FG14P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32FG1P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32FG1P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32MG12P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32MG12P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32MG13P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32MG13P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32MG14P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32MG14P_rmu_pin_reset_extended.ewp │ │ │ ├── EFR32MG1P_rmu_pin_reset_extended.ewd │ │ │ ├── EFR32MG1P_rmu_pin_reset_extended.ewp │ │ │ └── rmu_pin_reset_extended.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── rmu_wdog_limited │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_rmu_wdog_limited.slsproj │ │ ├── BRD4103A_EFR32BG12P_rmu_wdog_limited.slsproj │ │ ├── BRD4104A_EFR32BG13P_rmu_wdog_limited.slsproj │ │ ├── BRD4151A_EFR32MG1P_rmu_wdog_limited.slsproj │ │ ├── BRD4159A_EFR32MG13P_rmu_wdog_limited.slsproj │ │ ├── BRD4161A_EFR32MG12P_rmu_wdog_limited.slsproj │ │ ├── BRD4169B_EFR32MG14P_rmu_wdog_limited.slsproj │ │ ├── BRD4250A_EFR32FG1P_rmu_wdog_limited.slsproj │ │ ├── BRD4253A_EFR32FG12P_rmu_wdog_limited.slsproj │ │ ├── BRD4256A_EFR32FG13P_rmu_wdog_limited.slsproj │ │ ├── BRD4257A_EFR32FG14P_rmu_wdog_limited.slsproj │ │ ├── SLSTK3301A_EFM32TG11_rmu_wdog_limited.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_rmu_wdog_limited.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_rmu_wdog_limited.slsproj │ │ └── SLSTK3701A_EFM32GG11_rmu_wdog_limited.slsproj │ │ ├── doc │ │ ├── EFM32GG11_rmu_wdog_limited.xml │ │ ├── EFM32PG12B_rmu_wdog_limited.xml │ │ ├── EFM32PG1B_rmu_wdog_limited.xml │ │ ├── EFM32TG11_rmu_wdog_limited.xml │ │ ├── EFR32BG12P_rmu_wdog_limited.xml │ │ ├── EFR32BG13P_rmu_wdog_limited.xml │ │ ├── EFR32BG1P_rmu_wdog_limited.xml │ │ ├── EFR32FG12P_rmu_wdog_limited.xml │ │ ├── EFR32FG13P_rmu_wdog_limited.xml │ │ ├── EFR32FG14P_rmu_wdog_limited.xml │ │ ├── EFR32FG1P_rmu_wdog_limited.xml │ │ ├── EFR32MG12P_rmu_wdog_limited.xml │ │ ├── EFR32MG13P_rmu_wdog_limited.xml │ │ ├── EFR32MG14P_rmu_wdog_limited.xml │ │ └── EFR32MG1P_rmu_wdog_limited.xml │ │ ├── iar │ │ ├── EFM32GG11_rmu_wdog_limited.ewd │ │ ├── EFM32GG11_rmu_wdog_limited.ewp │ │ ├── EFM32PG12B_rmu_wdog_limited.ewd │ │ ├── EFM32PG12B_rmu_wdog_limited.ewp │ │ ├── EFM32PG1B_rmu_wdog_limited.ewd │ │ ├── EFM32PG1B_rmu_wdog_limited.ewp │ │ ├── EFM32TG11_rmu_wdog_limited.ewd │ │ ├── EFM32TG11_rmu_wdog_limited.ewp │ │ ├── EFR32BG12P_rmu_wdog_limited.ewd │ │ ├── EFR32BG12P_rmu_wdog_limited.ewp │ │ ├── EFR32BG13P_rmu_wdog_limited.ewd │ │ ├── EFR32BG13P_rmu_wdog_limited.ewp │ │ ├── EFR32BG1P_rmu_wdog_limited.ewd │ │ ├── EFR32BG1P_rmu_wdog_limited.ewp │ │ ├── EFR32FG12P_rmu_wdog_limited.ewd │ │ ├── EFR32FG12P_rmu_wdog_limited.ewp │ │ ├── EFR32FG13P_rmu_wdog_limited.ewd │ │ ├── EFR32FG13P_rmu_wdog_limited.ewp │ │ ├── EFR32FG14P_rmu_wdog_limited.ewd │ │ ├── EFR32FG14P_rmu_wdog_limited.ewp │ │ ├── EFR32FG1P_rmu_wdog_limited.ewd │ │ ├── EFR32FG1P_rmu_wdog_limited.ewp │ │ ├── EFR32MG12P_rmu_wdog_limited.ewd │ │ ├── EFR32MG12P_rmu_wdog_limited.ewp │ │ ├── EFR32MG13P_rmu_wdog_limited.ewd │ │ ├── EFR32MG13P_rmu_wdog_limited.ewp │ │ ├── EFR32MG14P_rmu_wdog_limited.ewd │ │ ├── EFR32MG14P_rmu_wdog_limited.ewp │ │ ├── EFR32MG1P_rmu_wdog_limited.ewd │ │ ├── EFR32MG1P_rmu_wdog_limited.ewp │ │ └── rmu_wdog_limited.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── rtcc │ ├── rtcc_alarm_set │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4104A_EFR32BG13_rtcc_alarm_set.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4159A_EFR32MG13_rtcc_alarm_set.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4169B_EFR32MG14_rtcc_alarm_set.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_rtcc_alarm_set.slsproj │ │ │ ├── BRD4256A_EFR32FG13_rtcc_alarm_set.slsproj │ │ │ ├── BRD4257A_EFR32FG14_rtcc_alarm_set.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_rtcc_alarm_set.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_rtcc_alarm_set.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_rtcc_alarm_set.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_rtcc_alarm_set.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_rtcc_alarm_set.xml │ │ │ ├── EFM32PG12B_rtcc_alarm_set.xml │ │ │ ├── EFM32PG1B_rtcc_alarm_set.xml │ │ │ ├── EFM32TG11_rtcc_alarm_set.xml │ │ │ ├── EFR32BG12P_rtcc_alarm_set.xml │ │ │ ├── EFR32BG13_rtcc_alarm_set.xml │ │ │ ├── EFR32BG1P_rtcc_alarm_set.xml │ │ │ ├── EFR32FG12P_rtcc_alarm_set.xml │ │ │ ├── EFR32FG13_rtcc_alarm_set.xml │ │ │ ├── EFR32FG14_rtcc_alarm_set.xml │ │ │ ├── EFR32FG1P_rtcc_alarm_set.xml │ │ │ ├── EFR32MG12P_rtcc_alarm_set.xml │ │ │ ├── EFR32MG13_rtcc_alarm_set.xml │ │ │ ├── EFR32MG14_rtcc_alarm_set.xml │ │ │ └── EFR32MG1P_rtcc_alarm_set.xml │ │ ├── iar │ │ │ ├── EFM32GG11_rtcc_alarm_set.ewd │ │ │ ├── EFM32GG11_rtcc_alarm_set.ewp │ │ │ ├── EFM32PG12B_rtcc_alarm_set.ewd │ │ │ ├── EFM32PG12B_rtcc_alarm_set.ewp │ │ │ ├── EFM32PG1B_rtcc_alarm_set.ewd │ │ │ ├── EFM32PG1B_rtcc_alarm_set.ewp │ │ │ ├── EFM32TG11_rtcc_alarm_set.ewd │ │ │ ├── EFM32TG11_rtcc_alarm_set.ewp │ │ │ ├── EFR32BG12P_rtcc_alarm_set.ewd │ │ │ ├── EFR32BG12P_rtcc_alarm_set.ewp │ │ │ ├── EFR32BG13_rtcc_alarm_set.ewd │ │ │ ├── EFR32BG13_rtcc_alarm_set.ewp │ │ │ ├── EFR32BG1P_rtcc_alarm_set.ewd │ │ │ ├── EFR32BG1P_rtcc_alarm_set.ewp │ │ │ ├── EFR32FG12P_rtcc_alarm_set.ewd │ │ │ ├── EFR32FG12P_rtcc_alarm_set.ewp │ │ │ ├── EFR32FG13_rtcc_alarm_set.ewd │ │ │ ├── EFR32FG13_rtcc_alarm_set.ewp │ │ │ ├── EFR32FG14_rtcc_alarm_set.ewd │ │ │ ├── EFR32FG14_rtcc_alarm_set.ewp │ │ │ ├── EFR32FG1P_rtcc_alarm_set.ewd │ │ │ ├── EFR32FG1P_rtcc_alarm_set.ewp │ │ │ ├── EFR32MG12P_rtcc_alarm_set.ewd │ │ │ ├── EFR32MG12P_rtcc_alarm_set.ewp │ │ │ ├── EFR32MG13_rtcc_alarm_set.ewd │ │ │ ├── EFR32MG13_rtcc_alarm_set.ewp │ │ │ ├── EFR32MG14_rtcc_alarm_set.ewd │ │ │ ├── EFR32MG14_rtcc_alarm_set.ewp │ │ │ ├── EFR32MG1P_rtcc_alarm_set.ewd │ │ │ ├── EFR32MG1P_rtcc_alarm_set.ewp │ │ │ └── rtcc_alarm_set.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ └── rtcc_em4_wake │ │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_rtcc_wake_em4.slsproj │ │ ├── BRD4104A_EFR32BG13_rtcc_wake_em4.slsproj │ │ ├── BRD4159A_EFR32MG13_rtcc_wake_em4.slsproj │ │ ├── BRD4161A_EFR32MG12P_rtcc_wake_em4.slsproj │ │ ├── BRD4169B_EFR32MG14_rtcc_wake_em4.slsproj │ │ ├── BRD4253A_EFR32FG12P_rtcc_wake_em4.slsproj │ │ ├── BRD4256A_EFR32FG13_rtcc_wake_em4.slsproj │ │ ├── BRD4257A_EFR32FG14_rtcc_wake_em4.slsproj │ │ ├── SLSTK3301A_EFM32TG11_rtcc_wake_em4.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_rtcc_wake_em4.slsproj │ │ ├── SLSTK3701A_EFM32GG11_rtcc_wake_em4.slsproj │ │ └── SLTB009A_EFM32GG12_rtcc_wake_em4.slsproj │ │ ├── doc │ │ ├── EFM32GG11_rtcc_wake_em4.xml │ │ ├── EFM32GG12_rtcc_wake_em4.xml │ │ ├── EFM32PG12B_rtcc_wake_em4.xml │ │ ├── EFM32TG11_rtcc_wake_em4.xml │ │ ├── EFR32BG12P_rtcc_wake_em4.xml │ │ ├── EFR32BG13_rtcc_wake_em4.xml │ │ ├── EFR32FG12P_rtcc_wake_em4.xml │ │ ├── EFR32FG13_rtcc_wake_em4.xml │ │ ├── EFR32FG14_rtcc_wake_em4.xml │ │ ├── EFR32MG12P_rtcc_wake_em4.xml │ │ ├── EFR32MG13_rtcc_wake_em4.xml │ │ └── EFR32MG14_rtcc_wake_em4.xml │ │ ├── iar │ │ ├── EFM32GG11_rtcc_wake_em4.ewd │ │ ├── EFM32GG11_rtcc_wake_em4.ewp │ │ ├── EFM32GG12_rtcc_wake_em4.ewd │ │ ├── EFM32GG12_rtcc_wake_em4.ewp │ │ ├── EFM32PG12B_rtcc_wake_em4.ewd │ │ ├── EFM32PG12B_rtcc_wake_em4.ewp │ │ ├── EFM32TG11_rtcc_wake_em4.ewd │ │ ├── EFM32TG11_rtcc_wake_em4.ewp │ │ ├── EFR32BG12P_rtcc_wake_em4.ewd │ │ ├── EFR32BG12P_rtcc_wake_em4.ewp │ │ ├── EFR32BG13_rtcc_wake_em4.ewd │ │ ├── EFR32BG13_rtcc_wake_em4.ewp │ │ ├── EFR32FG12P_rtcc_wake_em4.ewd │ │ ├── EFR32FG12P_rtcc_wake_em4.ewp │ │ ├── EFR32FG13_rtcc_wake_em4.ewd │ │ ├── EFR32FG13_rtcc_wake_em4.ewp │ │ ├── EFR32FG14_rtcc_wake_em4.ewd │ │ ├── EFR32FG14_rtcc_wake_em4.ewp │ │ ├── EFR32MG12P_rtcc_wake_em4.ewd │ │ ├── EFR32MG12P_rtcc_wake_em4.ewp │ │ ├── EFR32MG13_rtcc_wake_em4.ewd │ │ ├── EFR32MG13_rtcc_wake_em4.ewp │ │ ├── EFR32MG14_rtcc_wake_em4.ewd │ │ ├── EFR32MG14_rtcc_wake_em4.ewp │ │ └── rtcc_wake_em4.eww │ │ ├── readme.txt │ │ └── src │ │ ├── gg1x_main_rtcc_em4_wake.c │ │ └── main_rtcc_em4_wake.c ├── servo │ ├── adjust │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_servo_adjust.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_servo_adjust.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_servo_adjust.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_servo_adjust.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_servo_adjust.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_servo_adjust.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_servo_adjust.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_servo_adjust.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_servo_adjust.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_servo_adjust.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_servo_adjust.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_servo_adjust.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_servo_adjust.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_servo_adjust.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_servo_adjust.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_servo_adjust.xml │ │ │ ├── EFM32PG12B_servo_adjust.xml │ │ │ ├── EFM32PG1B_servo_adjust.xml │ │ │ ├── EFM32TG11B_servo_adjust.xml │ │ │ ├── EFR32BG12P_servo_adjust.xml │ │ │ ├── EFR32BG13P_servo_adjust.xml │ │ │ ├── EFR32BG1P_servo_adjust.xml │ │ │ ├── EFR32FG12P_servo_adjust.xml │ │ │ ├── EFR32FG13P_servo_adjust.xml │ │ │ ├── EFR32FG14P_servo_adjust.xml │ │ │ ├── EFR32FG1P_servo_adjust.xml │ │ │ ├── EFR32MG12P_servo_adjust.xml │ │ │ ├── EFR32MG13P_servo_adjust.xml │ │ │ ├── EFR32MG14P_servo_adjust.xml │ │ │ └── EFR32MG1P_servo_adjust.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_servo_adjust.ewd │ │ │ ├── EFM32GG11B_servo_adjust.ewp │ │ │ ├── EFM32PG12B_servo_adjust.ewd │ │ │ ├── EFM32PG12B_servo_adjust.ewp │ │ │ ├── EFM32PG1B_servo_adjust.ewd │ │ │ ├── EFM32PG1B_servo_adjust.ewp │ │ │ ├── EFM32TG11B_servo_adjust.ewd │ │ │ ├── EFM32TG11B_servo_adjust.ewp │ │ │ ├── EFR32BG12P_servo_adjust.ewd │ │ │ ├── EFR32BG12P_servo_adjust.ewp │ │ │ ├── EFR32BG13P_servo_adjust.ewd │ │ │ ├── EFR32BG13P_servo_adjust.ewp │ │ │ ├── EFR32BG1P_servo_adjust.ewd │ │ │ ├── EFR32BG1P_servo_adjust.ewp │ │ │ ├── EFR32FG12P_servo_adjust.ewd │ │ │ ├── EFR32FG12P_servo_adjust.ewp │ │ │ ├── EFR32FG13P_servo_adjust.ewd │ │ │ ├── EFR32FG13P_servo_adjust.ewp │ │ │ ├── EFR32FG14P_servo_adjust.ewd │ │ │ ├── EFR32FG14P_servo_adjust.ewp │ │ │ ├── EFR32FG1P_servo_adjust.ewd │ │ │ ├── EFR32FG1P_servo_adjust.ewp │ │ │ ├── EFR32MG12P_servo_adjust.ewd │ │ │ ├── EFR32MG12P_servo_adjust.ewp │ │ │ ├── EFR32MG13P_servo_adjust.ewd │ │ │ ├── EFR32MG13P_servo_adjust.ewp │ │ │ ├── EFR32MG14P_servo_adjust.ewd │ │ │ ├── EFR32MG14P_servo_adjust.ewp │ │ │ ├── EFR32MG1P_servo_adjust.ewd │ │ │ ├── EFR32MG1P_servo_adjust.ewp │ │ │ └── pwm_servo_adjust.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_series1.c │ │ │ └── main_tg11.c │ └── sweep │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_servo_sweep.slsproj │ │ ├── BRD4103A_EFR32BG12P_servo_sweep.slsproj │ │ ├── BRD4104A_EFR32BG13P_servo_sweep.slsproj │ │ ├── BRD4151A_EFR32MG1P_servo_sweep.slsproj │ │ ├── BRD4159A_EFR32MG13P_servo_sweep.slsproj │ │ ├── BRD4161A_EFR32MG12P_servo_sweep.slsproj │ │ ├── BRD4169B_EFR32MG14P_servo_sweep.slsproj │ │ ├── BRD4250A_EFR32FG1P_servo_sweep.slsproj │ │ ├── BRD4253A_EFR32FG12P_servo_sweep.slsproj │ │ ├── BRD4256A_EFR32FG13P_servo_sweep.slsproj │ │ ├── BRD4257A_EFR32FG14P_servo_sweep.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_servo_sweep.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_servo_sweep.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_servo_sweep.slsproj │ │ └── SLSTK3701A_EFM32GG11B_servo_sweep.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_servo_sweep.xml │ │ ├── EFM32PG12B_servo_sweep.xml │ │ ├── EFM32PG1B_servo_sweep.xml │ │ ├── EFM32TG11B_servo_sweep.xml │ │ ├── EFR32BG12P_servo_sweep.xml │ │ ├── EFR32BG13P_servo_sweep.xml │ │ ├── EFR32BG1P_servo_sweep.xml │ │ ├── EFR32FG12P_servo_sweep.xml │ │ ├── EFR32FG13P_servo_sweep.xml │ │ ├── EFR32FG14P_servo_sweep.xml │ │ ├── EFR32FG1P_servo_sweep.xml │ │ ├── EFR32MG12P_servo_sweep.xml │ │ ├── EFR32MG13P_servo_sweep.xml │ │ ├── EFR32MG14P_servo_sweep.xml │ │ └── EFR32MG1P_servo_sweep.xml │ │ ├── iar │ │ ├── EFM32GG11B_servo_sweep.ewd │ │ ├── EFM32GG11B_servo_sweep.ewp │ │ ├── EFM32PG12B_servo_sweep.ewd │ │ ├── EFM32PG12B_servo_sweep.ewp │ │ ├── EFM32PG1B_servo_sweep.ewd │ │ ├── EFM32PG1B_servo_sweep.ewp │ │ ├── EFM32TG11B_servo_sweep.ewd │ │ ├── EFM32TG11B_servo_sweep.ewp │ │ ├── EFR32BG12P_servo_sweep.ewd │ │ ├── EFR32BG12P_servo_sweep.ewp │ │ ├── EFR32BG13P_servo_sweep.ewd │ │ ├── EFR32BG13P_servo_sweep.ewp │ │ ├── EFR32BG1P_servo_sweep.ewd │ │ ├── EFR32BG1P_servo_sweep.ewp │ │ ├── EFR32FG12P_servo_sweep.ewd │ │ ├── EFR32FG12P_servo_sweep.ewp │ │ ├── EFR32FG13P_servo_sweep.ewd │ │ ├── EFR32FG13P_servo_sweep.ewp │ │ ├── EFR32FG14P_servo_sweep.ewd │ │ ├── EFR32FG14P_servo_sweep.ewp │ │ ├── EFR32FG1P_servo_sweep.ewd │ │ ├── EFR32FG1P_servo_sweep.ewp │ │ ├── EFR32MG12P_servo_sweep.ewd │ │ ├── EFR32MG12P_servo_sweep.ewp │ │ ├── EFR32MG13P_servo_sweep.ewd │ │ ├── EFR32MG13P_servo_sweep.ewp │ │ ├── EFR32MG14P_servo_sweep.ewd │ │ ├── EFR32MG14P_servo_sweep.ewp │ │ ├── EFR32MG1P_servo_sweep.ewd │ │ ├── EFR32MG1P_servo_sweep.ewp │ │ └── pwm_servo_sweep.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_series1.c ├── timer │ ├── timer_dma_edge_capture │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_dma_edge_capture.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_dma_edge_capture.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_dma_edge_capture.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_dma_edge_capture.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_dma_edge_capture.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_dma_edge_capture.xml │ │ │ ├── EFM32PG12B_timer_dma_edge_capture.xml │ │ │ ├── EFM32PG1B_timer_dma_edge_capture.xml │ │ │ ├── EFM32TG11B_timer_dma_edge_capture.xml │ │ │ ├── EFR32BG12P_timer_dma_edge_capture.xml │ │ │ ├── EFR32BG13P_timer_dma_edge_capture.xml │ │ │ ├── EFR32BG1P_timer_dma_edge_capture.xml │ │ │ ├── EFR32FG12P_timer_dma_edge_capture.xml │ │ │ ├── EFR32FG13P_timer_dma_edge_capture.xml │ │ │ ├── EFR32FG14P_timer_dma_edge_capture.xml │ │ │ ├── EFR32FG1P_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG12P_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG13P_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG14P_timer_dma_edge_capture.xml │ │ │ └── EFR32MG1P_timer_dma_edge_capture.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_dma_edge_capture.ewd │ │ │ ├── EFM32GG11B_timer_dma_edge_capture.ewp │ │ │ ├── EFM32PG12B_timer_dma_edge_capture.ewd │ │ │ ├── EFM32PG12B_timer_dma_edge_capture.ewp │ │ │ ├── EFM32PG1B_timer_dma_edge_capture.ewd │ │ │ ├── EFM32PG1B_timer_dma_edge_capture.ewp │ │ │ ├── EFM32TG11B_timer_dma_edge_capture.ewd │ │ │ ├── EFM32TG11B_timer_dma_edge_capture.ewp │ │ │ ├── EFR32BG12P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32BG12P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32BG13P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32BG13P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32BG1P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32BG1P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32FG12P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32FG12P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32FG13P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32FG13P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32FG14P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32FG14P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32FG1P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32FG1P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG12P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG12P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG13P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG13P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG14P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG14P_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG1P_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG1P_timer_dma_edge_capture.ewp │ │ │ └── timer_dma_edge_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_frequency_generation │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_frequency_generation.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_frequency_generation.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_frequency_generation.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_frequency_generation.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_frequency_generation.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_frequency_generation.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_frequency_generation.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_frequency_generation.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_frequency_generation.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_frequency_generation.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_frequency_generation.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_frequency_generation.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_frequency_generation.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_frequency_generation.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_frequency_generation.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_frequency_generation.xml │ │ │ ├── EFM32PG12B_timer_frequency_generation.xml │ │ │ ├── EFM32PG1B_timer_frequency_generation.xml │ │ │ ├── EFM32TG11B_timer_frequency_generation.xml │ │ │ ├── EFR32BG12P_timer_frequency_generation.xml │ │ │ ├── EFR32BG13P_timer_frequency_generation.xml │ │ │ ├── EFR32BG1P_timer_frequency_generation.xml │ │ │ ├── EFR32FG12P_timer_frequency_generation.xml │ │ │ ├── EFR32FG13P_timer_frequency_generation.xml │ │ │ ├── EFR32FG14P_timer_frequency_generation.xml │ │ │ ├── EFR32FG1P_timer_frequency_generation.xml │ │ │ ├── EFR32MG12P_timer_frequency_generation.xml │ │ │ ├── EFR32MG13P_timer_frequency_generation.xml │ │ │ ├── EFR32MG14P_timer_frequency_generation.xml │ │ │ └── EFR32MG1P_timer_frequency_generation.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_frequency_generation.ewd │ │ │ ├── EFM32GG11B_timer_frequency_generation.ewp │ │ │ ├── EFM32PG12B_timer_frequency_generation.ewd │ │ │ ├── EFM32PG12B_timer_frequency_generation.ewp │ │ │ ├── EFM32PG1B_timer_frequency_generation.ewd │ │ │ ├── EFM32PG1B_timer_frequency_generation.ewp │ │ │ ├── EFM32TG11B_timer_frequency_generation.ewd │ │ │ ├── EFM32TG11B_timer_frequency_generation.ewp │ │ │ ├── EFR32BG12P_timer_frequency_generation.ewd │ │ │ ├── EFR32BG12P_timer_frequency_generation.ewp │ │ │ ├── EFR32BG13P_timer_frequency_generation.ewd │ │ │ ├── EFR32BG13P_timer_frequency_generation.ewp │ │ │ ├── EFR32BG1P_timer_frequency_generation.ewd │ │ │ ├── EFR32BG1P_timer_frequency_generation.ewp │ │ │ ├── EFR32FG12P_timer_frequency_generation.ewd │ │ │ ├── EFR32FG12P_timer_frequency_generation.ewp │ │ │ ├── EFR32FG13P_timer_frequency_generation.ewd │ │ │ ├── EFR32FG13P_timer_frequency_generation.ewp │ │ │ ├── EFR32FG14P_timer_frequency_generation.ewd │ │ │ ├── EFR32FG14P_timer_frequency_generation.ewp │ │ │ ├── EFR32FG1P_timer_frequency_generation.ewd │ │ │ ├── EFR32FG1P_timer_frequency_generation.ewp │ │ │ ├── EFR32MG12P_timer_frequency_generation.ewd │ │ │ ├── EFR32MG12P_timer_frequency_generation.ewp │ │ │ ├── EFR32MG13P_timer_frequency_generation.ewd │ │ │ ├── EFR32MG13P_timer_frequency_generation.ewp │ │ │ ├── EFR32MG14P_timer_frequency_generation.ewd │ │ │ ├── EFR32MG14P_timer_frequency_generation.ewp │ │ │ ├── EFR32MG1P_timer_frequency_generation.ewd │ │ │ ├── EFR32MG1P_timer_frequency_generation.ewp │ │ │ └── timer_frequency_generation.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_input_capture_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_input_capture_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_input_capture_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_input_capture_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_input_capture_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_input_capture_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_input_capture_interrupt.xml │ │ │ ├── EFM32PG12B_timer_input_capture_interrupt.xml │ │ │ ├── EFM32PG1B_timer_input_capture_interrupt.xml │ │ │ ├── EFM32TG11B_timer_input_capture_interrupt.xml │ │ │ ├── EFR32BG12P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32BG13P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32BG1P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32FG12P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32FG13P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32FG14P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32FG1P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG12P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG13P_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG14P_timer_input_capture_interrupt.xml │ │ │ └── EFR32MG1P_timer_input_capture_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32GG11B_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32PG12B_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32PG12B_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32PG1B_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32PG1B_timer_input_capture_interrupt.ewp │ │ │ ├── EFM32TG11B_timer_input_capture_interrupt.ewd │ │ │ ├── EFM32TG11B_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32BG12P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32BG12P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32BG13P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32BG13P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32BG1P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32BG1P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32FG12P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32FG12P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32FG13P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32FG13P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32FG14P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32FG14P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32FG1P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32FG1P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG12P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG12P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG13P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG13P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG14P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG14P_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG1P_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG1P_timer_input_capture_interrupt.ewp │ │ │ └── timer_input_capture_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── timer_input_capture_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_input_capture_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_input_capture_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_input_capture_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_input_capture_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_input_capture_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_input_capture_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_input_capture_polled.xml │ │ │ ├── EFM32PG12B_timer_input_capture_polled.xml │ │ │ ├── EFM32PG1B_timer_input_capture_polled.xml │ │ │ ├── EFM32TG11B_timer_input_capture_polled.xml │ │ │ ├── EFR32BG12P_timer_input_capture_polled.xml │ │ │ ├── EFR32BG13P_timer_input_capture_polled.xml │ │ │ ├── EFR32BG1P_timer_input_capture_polled.xml │ │ │ ├── EFR32FG12P_timer_input_capture_polled.xml │ │ │ ├── EFR32FG13P_timer_input_capture_polled.xml │ │ │ ├── EFR32FG14P_timer_input_capture_polled.xml │ │ │ ├── EFR32FG1P_timer_input_capture_polled.xml │ │ │ ├── EFR32MG12P_timer_input_capture_polled.xml │ │ │ ├── EFR32MG13P_timer_input_capture_polled.xml │ │ │ ├── EFR32MG14P_timer_input_capture_polled.xml │ │ │ └── EFR32MG1P_timer_input_capture_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_input_capture_polled.ewd │ │ │ ├── EFM32GG11B_timer_input_capture_polled.ewp │ │ │ ├── EFM32PG12B_timer_input_capture_polled.ewd │ │ │ ├── EFM32PG12B_timer_input_capture_polled.ewp │ │ │ ├── EFM32PG1B_timer_input_capture_polled.ewd │ │ │ ├── EFM32PG1B_timer_input_capture_polled.ewp │ │ │ ├── EFM32TG11B_timer_input_capture_polled.ewd │ │ │ ├── EFM32TG11B_timer_input_capture_polled.ewp │ │ │ ├── EFR32BG12P_timer_input_capture_polled.ewd │ │ │ ├── EFR32BG12P_timer_input_capture_polled.ewp │ │ │ ├── EFR32BG13P_timer_input_capture_polled.ewd │ │ │ ├── EFR32BG13P_timer_input_capture_polled.ewp │ │ │ ├── EFR32BG1P_timer_input_capture_polled.ewd │ │ │ ├── EFR32BG1P_timer_input_capture_polled.ewp │ │ │ ├── EFR32FG12P_timer_input_capture_polled.ewd │ │ │ ├── EFR32FG12P_timer_input_capture_polled.ewp │ │ │ ├── EFR32FG13P_timer_input_capture_polled.ewd │ │ │ ├── EFR32FG13P_timer_input_capture_polled.ewp │ │ │ ├── EFR32FG14P_timer_input_capture_polled.ewd │ │ │ ├── EFR32FG14P_timer_input_capture_polled.ewp │ │ │ ├── EFR32FG1P_timer_input_capture_polled.ewd │ │ │ ├── EFR32FG1P_timer_input_capture_polled.ewp │ │ │ ├── EFR32MG12P_timer_input_capture_polled.ewd │ │ │ ├── EFR32MG12P_timer_input_capture_polled.ewp │ │ │ ├── EFR32MG13P_timer_input_capture_polled.ewd │ │ │ ├── EFR32MG13P_timer_input_capture_polled.ewp │ │ │ ├── EFR32MG14P_timer_input_capture_polled.ewd │ │ │ ├── EFR32MG14P_timer_input_capture_polled.ewp │ │ │ ├── EFR32MG1P_timer_input_capture_polled.ewd │ │ │ ├── EFR32MG1P_timer_input_capture_polled.ewp │ │ │ └── timer_input_capture_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── timer_period_measurement_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_period_measurement_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_period_measurement_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_period_measurement_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_period_measurement_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_period_measurement_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32PG12B_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32PG1B_timer_period_measurement_interrupt.xml │ │ │ ├── EFM32TG11B_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32BG12P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32BG13P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32BG1P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32FG12P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32FG13P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32FG14P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32FG1P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG12P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG13P_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG14P_timer_period_measurement_interrupt.xml │ │ │ └── EFR32MG1P_timer_period_measurement_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32GG11B_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32PG12B_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32PG12B_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32PG1B_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32PG1B_timer_period_measurement_interrupt.ewp │ │ │ ├── EFM32TG11B_timer_period_measurement_interrupt.ewd │ │ │ ├── EFM32TG11B_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32BG12P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32BG12P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32BG13P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32BG13P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32BG1P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32BG1P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32FG12P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32FG12P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32FG13P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32FG13P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32FG14P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32FG14P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32FG1P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32FG1P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG12P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG12P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG13P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG13P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG14P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG14P_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG1P_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG1P_timer_period_measurement_interrupt.ewp │ │ │ └── timer_period_measurement_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_period_measurement_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_period_measurement_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_period_measurement_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_period_measurement_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_period_measurement_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_period_measurement_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_period_measurement_polled.xml │ │ │ ├── EFM32PG12B_timer_period_measurement_polled.xml │ │ │ ├── EFM32PG1B_timer_period_measurement_polled.xml │ │ │ ├── EFM32TG11B_timer_period_measurement_polled.xml │ │ │ ├── EFR32BG12P_timer_period_measurement_polled.xml │ │ │ ├── EFR32BG13P_timer_period_measurement_polled.xml │ │ │ ├── EFR32BG1P_timer_period_measurement_polled.xml │ │ │ ├── EFR32FG12P_timer_period_measurement_polled.xml │ │ │ ├── EFR32FG13P_timer_period_measurement_polled.xml │ │ │ ├── EFR32FG14P_timer_period_measurement_polled.xml │ │ │ ├── EFR32FG1P_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG12P_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG13P_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG14P_timer_period_measurement_polled.xml │ │ │ └── EFR32MG1P_timer_period_measurement_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_period_measurement_polled.ewd │ │ │ ├── EFM32GG11B_timer_period_measurement_polled.ewp │ │ │ ├── EFM32PG12B_timer_period_measurement_polled.ewd │ │ │ ├── EFM32PG12B_timer_period_measurement_polled.ewp │ │ │ ├── EFM32PG1B_timer_period_measurement_polled.ewd │ │ │ ├── EFM32PG1B_timer_period_measurement_polled.ewp │ │ │ ├── EFM32TG11B_timer_period_measurement_polled.ewd │ │ │ ├── EFM32TG11B_timer_period_measurement_polled.ewp │ │ │ ├── EFR32BG12P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32BG12P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32BG13P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32BG13P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32BG1P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32BG1P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32FG12P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32FG12P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32FG13P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32FG13P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32FG14P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32FG14P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32FG1P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32FG1P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG12P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG12P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG13P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG13P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG14P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG14P_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG1P_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG1P_timer_period_measurement_polled.ewp │ │ │ └── timer_period_measurement_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_pulse_capture │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_pulse_capture.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_pulse_capture.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_pulse_capture.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_pulse_capture.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_pulse_capture.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_pulse_capture.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_pulse_capture.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_pulse_capture.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_pulse_capture.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_pulse_capture.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_pulse_capture.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_pulse_capture.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_pulse_capture.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_pulse_capture.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_pulse_capture.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_pulse_capture.xml │ │ │ ├── EFM32PG12B_timer_pulse_capture.xml │ │ │ ├── EFM32PG1B_timer_pulse_capture.xml │ │ │ ├── EFM32TG11B_timer_pulse_capture.xml │ │ │ ├── EFR32BG12P_timer_pulse_capture.xml │ │ │ ├── EFR32BG13P_timer_pulse_capture.xml │ │ │ ├── EFR32BG1P_timer_pulse_capture.xml │ │ │ ├── EFR32FG12P_timer_pulse_capture.xml │ │ │ ├── EFR32FG13P_timer_pulse_capture.xml │ │ │ ├── EFR32FG14P_timer_pulse_capture.xml │ │ │ ├── EFR32FG1P_timer_pulse_capture.xml │ │ │ ├── EFR32MG12P_timer_pulse_capture.xml │ │ │ ├── EFR32MG13P_timer_pulse_capture.xml │ │ │ ├── EFR32MG14P_timer_pulse_capture.xml │ │ │ └── EFR32MG1P_timer_pulse_capture.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_pulse_capture.ewd │ │ │ ├── EFM32GG11B_timer_pulse_capture.ewp │ │ │ ├── EFM32PG12B_timer_pulse_capture.ewd │ │ │ ├── EFM32PG12B_timer_pulse_capture.ewp │ │ │ ├── EFM32PG1B_timer_pulse_capture.ewd │ │ │ ├── EFM32PG1B_timer_pulse_capture.ewp │ │ │ ├── EFM32TG11B_timer_pulse_capture.ewd │ │ │ ├── EFM32TG11B_timer_pulse_capture.ewp │ │ │ ├── EFR32BG12P_timer_pulse_capture.ewd │ │ │ ├── EFR32BG12P_timer_pulse_capture.ewp │ │ │ ├── EFR32BG13P_timer_pulse_capture.ewd │ │ │ ├── EFR32BG13P_timer_pulse_capture.ewp │ │ │ ├── EFR32BG1P_timer_pulse_capture.ewd │ │ │ ├── EFR32BG1P_timer_pulse_capture.ewp │ │ │ ├── EFR32FG12P_timer_pulse_capture.ewd │ │ │ ├── EFR32FG12P_timer_pulse_capture.ewp │ │ │ ├── EFR32FG13P_timer_pulse_capture.ewd │ │ │ ├── EFR32FG13P_timer_pulse_capture.ewp │ │ │ ├── EFR32FG14P_timer_pulse_capture.ewd │ │ │ ├── EFR32FG14P_timer_pulse_capture.ewp │ │ │ ├── EFR32FG1P_timer_pulse_capture.ewd │ │ │ ├── EFR32FG1P_timer_pulse_capture.ewp │ │ │ ├── EFR32MG12P_timer_pulse_capture.ewd │ │ │ ├── EFR32MG12P_timer_pulse_capture.ewp │ │ │ ├── EFR32MG13P_timer_pulse_capture.ewd │ │ │ ├── EFR32MG13P_timer_pulse_capture.ewp │ │ │ ├── EFR32MG14P_timer_pulse_capture.ewd │ │ │ ├── EFR32MG14P_timer_pulse_capture.ewp │ │ │ ├── EFR32MG1P_timer_pulse_capture.ewd │ │ │ ├── EFR32MG1P_timer_pulse_capture.ewp │ │ │ └── timer_pulse_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_pwm_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_pwm_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_pwm_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_pwm_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_pwm_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_pwm_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_pwm_dma.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_pwm_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_pwm_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_pwm_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_pwm_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_pwm_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_pwm_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_pwm_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_pwm_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_pwm_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_pwm_dma.xml │ │ │ ├── EFM32PG12B_timer_pwm_dma.xml │ │ │ ├── EFM32PG1B_timer_pwm_dma.xml │ │ │ ├── EFM32TG11B_timer_pwm_dma.xml │ │ │ ├── EFR32BG12P_timer_pwm_dma.xml │ │ │ ├── EFR32BG13P_timer_pwm_dma.xml │ │ │ ├── EFR32BG1P_timer_pwm_dma.xml │ │ │ ├── EFR32FG12P_timer_pwm_dma.xml │ │ │ ├── EFR32FG13P_timer_pwm_dma.xml │ │ │ ├── EFR32FG14P_timer_pwm_dma.xml │ │ │ ├── EFR32FG1P_timer_pwm_dma.xml │ │ │ ├── EFR32MG12P_timer_pwm_dma.xml │ │ │ ├── EFR32MG13P_timer_pwm_dma.xml │ │ │ ├── EFR32MG14P_timer_pwm_dma.xml │ │ │ └── EFR32MG1P_timer_pwm_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_pwm_dma.ewd │ │ │ ├── EFM32GG11B_timer_pwm_dma.ewp │ │ │ ├── EFM32PG12B_timer_pwm_dma.ewd │ │ │ ├── EFM32PG12B_timer_pwm_dma.ewp │ │ │ ├── EFM32PG1B_timer_pwm_dma.ewd │ │ │ ├── EFM32PG1B_timer_pwm_dma.ewp │ │ │ ├── EFM32TG11B_timer_pwm_dma.ewd │ │ │ ├── EFM32TG11B_timer_pwm_dma.ewp │ │ │ ├── EFR32BG12P_timer_pwm_dma.ewd │ │ │ ├── EFR32BG12P_timer_pwm_dma.ewp │ │ │ ├── EFR32BG13P_timer_pwm_dma.ewd │ │ │ ├── EFR32BG13P_timer_pwm_dma.ewp │ │ │ ├── EFR32BG1P_timer_pwm_dma.ewd │ │ │ ├── EFR32BG1P_timer_pwm_dma.ewp │ │ │ ├── EFR32FG12P_timer_pwm_dma.ewd │ │ │ ├── EFR32FG12P_timer_pwm_dma.ewp │ │ │ ├── EFR32FG13P_timer_pwm_dma.ewd │ │ │ ├── EFR32FG13P_timer_pwm_dma.ewp │ │ │ ├── EFR32FG14P_timer_pwm_dma.ewd │ │ │ ├── EFR32FG14P_timer_pwm_dma.ewp │ │ │ ├── EFR32FG1P_timer_pwm_dma.ewd │ │ │ ├── EFR32FG1P_timer_pwm_dma.ewp │ │ │ ├── EFR32MG12P_timer_pwm_dma.ewd │ │ │ ├── EFR32MG12P_timer_pwm_dma.ewp │ │ │ ├── EFR32MG13P_timer_pwm_dma.ewd │ │ │ ├── EFR32MG13P_timer_pwm_dma.ewp │ │ │ ├── EFR32MG14P_timer_pwm_dma.ewd │ │ │ ├── EFR32MG14P_timer_pwm_dma.ewp │ │ │ ├── EFR32MG1P_timer_pwm_dma.ewd │ │ │ ├── EFR32MG1P_timer_pwm_dma.ewp │ │ │ └── timer_pwm_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_pwm_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_pwm_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_pwm_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_pwm_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_pwm_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_pwm_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_pwm_interrupt.xml │ │ │ ├── EFM32PG12B_timer_pwm_interrupt.xml │ │ │ ├── EFM32PG1B_timer_pwm_interrupt.xml │ │ │ ├── EFM32TG11B_timer_pwm_interrupt.xml │ │ │ ├── EFR32BG12P_timer_pwm_interrupt.xml │ │ │ ├── EFR32BG13P_timer_pwm_interrupt.xml │ │ │ ├── EFR32BG1P_timer_pwm_interrupt.xml │ │ │ ├── EFR32FG12P_timer_pwm_interrupt.xml │ │ │ ├── EFR32FG13P_timer_pwm_interrupt.xml │ │ │ ├── EFR32FG14P_timer_pwm_interrupt.xml │ │ │ ├── EFR32FG1P_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG12P_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG13P_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG14P_timer_pwm_interrupt.xml │ │ │ └── EFR32MG1P_timer_pwm_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_pwm_interrupt.ewd │ │ │ ├── EFM32GG11B_timer_pwm_interrupt.ewp │ │ │ ├── EFM32PG12B_timer_pwm_interrupt.ewd │ │ │ ├── EFM32PG12B_timer_pwm_interrupt.ewp │ │ │ ├── EFM32PG1B_timer_pwm_interrupt.ewd │ │ │ ├── EFM32PG1B_timer_pwm_interrupt.ewp │ │ │ ├── EFM32TG11B_timer_pwm_interrupt.ewd │ │ │ ├── EFM32TG11B_timer_pwm_interrupt.ewp │ │ │ ├── EFR32BG12P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32BG12P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32BG13P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32BG13P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32BG1P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32BG1P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32FG12P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32FG12P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32FG13P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32FG13P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32FG14P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32FG14P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32FG1P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32FG1P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG12P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG12P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG13P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG13P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG14P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG14P_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG1P_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG1P_timer_pwm_interrupt.ewp │ │ │ └── timer_pwm_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_single_edge_output_compare │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_single_edge_output_compare.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_single_edge_output_compare.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_single_edge_output_compare.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_single_edge_output_compare.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_single_edge_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_single_edge_output_compare.xml │ │ │ ├── EFM32PG12B_timer_single_edge_output_compare.xml │ │ │ ├── EFM32PG1B_timer_single_edge_output_compare.xml │ │ │ ├── EFM32TG11B_timer_single_edge_output_compare.xml │ │ │ ├── EFR32BG12P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32BG13P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32BG1P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32FG12P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32FG13P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32FG14P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32FG1P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG12P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG13P_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG14P_timer_single_edge_output_compare.xml │ │ │ └── EFR32MG1P_timer_single_edge_output_compare.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32GG11B_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32PG12B_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32PG12B_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32PG1B_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32PG1B_timer_single_edge_output_compare.ewp │ │ │ ├── EFM32TG11B_timer_single_edge_output_compare.ewd │ │ │ ├── EFM32TG11B_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32BG12P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32BG12P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32BG13P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32BG13P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32BG1P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32BG1P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32FG12P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32FG12P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32FG13P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32FG13P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32FG14P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32FG14P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32FG1P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32FG1P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG12P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG12P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG13P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG13P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG14P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG14P_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG1P_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG1P_timer_single_edge_output_compare.ewp │ │ │ └── timer_single_edge_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_single_pulse_generation_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_single_pulse_generation_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_single_pulse_generation_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_single_pulse_generation_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_single_pulse_generation_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_single_pulse_generation_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_dma.xml │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_dma.xml │ │ │ └── EFR32MG1P_timer_single_pulse_generation_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG1P_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG1P_timer_single_pulse_generation_dma.ewp │ │ │ └── timer_single_pulse_generation_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ ├── timer_single_pulse_generation_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_timer_single_pulse_generation_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_timer_single_pulse_generation_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_interrupt.xml │ │ │ └── EFR32MG1P_timer_single_pulse_generation_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32GG11B_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32PG12B_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32PG1B_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFM32TG11B_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32BG12P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32BG13P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32BG1P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32FG12P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32FG13P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32FG14P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32FG1P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG12P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG13P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG14P_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG1P_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG1P_timer_single_pulse_generation_interrupt.ewp │ │ │ └── timer_single_pulse_generation_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11_tg11.c │ │ │ └── main_s1.c │ └── timer_single_pulse_generation_polled │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4103A_EFR32BG12P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4104A_EFR32BG13P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4151A_EFR32MG1P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4159A_EFR32MG13P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4161A_EFR32MG12P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4169B_EFR32MG14P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4250A_EFR32FG1P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4253A_EFR32FG12P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4256A_EFR32FG13P_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4257A_EFR32FG14P_timer_single_pulse_generation_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_timer_single_pulse_generation_polled.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_timer_single_pulse_generation_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_timer_single_pulse_generation_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11B_timer_single_pulse_generation_polled.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_timer_single_pulse_generation_polled.xml │ │ ├── EFM32PG12B_timer_single_pulse_generation_polled.xml │ │ ├── EFM32PG1B_timer_single_pulse_generation_polled.xml │ │ ├── EFM32TG11B_timer_single_pulse_generation_polled.xml │ │ ├── EFR32BG12P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32BG13P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32BG1P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32FG12P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32FG13P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32FG14P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32FG1P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG12P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG13P_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG14P_timer_single_pulse_generation_polled.xml │ │ └── EFR32MG1P_timer_single_pulse_generation_polled.xml │ │ ├── iar │ │ ├── EFM32GG11B_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32GG11B_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32PG12B_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32PG12B_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32PG1B_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32PG1B_timer_single_pulse_generation_polled.ewp │ │ ├── EFM32TG11B_timer_single_pulse_generation_polled.ewd │ │ ├── EFM32TG11B_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32BG12P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32BG12P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32BG13P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32BG13P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32BG1P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32BG1P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32FG12P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32FG12P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32FG13P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32FG13P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32FG14P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32FG14P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32FG1P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32FG1P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG12P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG12P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG13P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG13P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG14P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG14P_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG1P_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG1P_timer_single_pulse_generation_polled.ewp │ │ └── timer_single_pulse_generation_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c ├── usart │ ├── async_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_async_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_async_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13_async_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_async_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13_async_interrupt.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_async_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14_async_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_async_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_async_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13_async_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14_async_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_async_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_async_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_async_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_async_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_async_interrupt.xml │ │ │ ├── EFM32PG12B_async_interrupt.xml │ │ │ ├── EFM32PG1B_async_interrupt.xml │ │ │ ├── EFM32TG11_async_interrupt.xml │ │ │ ├── EFR32BG12P_async_interrupt.xml │ │ │ ├── EFR32BG13_async_interrupt.xml │ │ │ ├── EFR32BG1P_async_interrupt.xml │ │ │ ├── EFR32FG12P_async_interrupt.xml │ │ │ ├── EFR32FG13_async_interrupt.xml │ │ │ ├── EFR32FG14_async_interrupt.xml │ │ │ ├── EFR32FG1P_async_interrupt.xml │ │ │ ├── EFR32MG12P_async_interrupt.xml │ │ │ ├── EFR32MG13_async_interrupt.xml │ │ │ ├── EFR32MG14_async_interrupt.xml │ │ │ └── EFR32MG1P_async_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_async_interrupt.ewd │ │ │ ├── EFM32GG11_async_interrupt.ewp │ │ │ ├── EFM32PG12B_async_interrupt.ewd │ │ │ ├── EFM32PG12B_async_interrupt.ewp │ │ │ ├── EFM32PG1B_async_interrupt.ewd │ │ │ ├── EFM32PG1B_async_interrupt.ewp │ │ │ ├── EFM32TG11_async_interrupt.ewd │ │ │ ├── EFM32TG11_async_interrupt.ewp │ │ │ ├── EFR32BG12P_async_interrupt.ewd │ │ │ ├── EFR32BG12P_async_interrupt.ewp │ │ │ ├── EFR32BG13_async_interrupt.ewd │ │ │ ├── EFR32BG13_async_interrupt.ewp │ │ │ ├── EFR32BG1P_async_interrupt.ewd │ │ │ ├── EFR32BG1P_async_interrupt.ewp │ │ │ ├── EFR32FG12P_async_interrupt.ewd │ │ │ ├── EFR32FG12P_async_interrupt.ewp │ │ │ ├── EFR32FG13_async_interrupt.ewd │ │ │ ├── EFR32FG13_async_interrupt.ewp │ │ │ ├── EFR32FG14_async_interrupt.ewd │ │ │ ├── EFR32FG14_async_interrupt.ewp │ │ │ ├── EFR32FG1P_async_interrupt.ewd │ │ │ ├── EFR32FG1P_async_interrupt.ewp │ │ │ ├── EFR32MG12P_async_interrupt.ewd │ │ │ ├── EFR32MG12P_async_interrupt.ewp │ │ │ ├── EFR32MG13_async_interrupt.ewd │ │ │ ├── EFR32MG13_async_interrupt.ewp │ │ │ ├── EFR32MG14_async_interrupt.ewd │ │ │ ├── EFR32MG14_async_interrupt.ewp │ │ │ ├── EFR32MG1P_async_interrupt.ewd │ │ │ ├── EFR32MG1P_async_interrupt.ewp │ │ │ └── async_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gg11.c │ │ │ ├── main_tg11.c │ │ │ └── main_xg1_xg12_xg13_xg14.c │ ├── async_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_async_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_async_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13_async_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_async_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13_async_polled.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_async_polled.slsproj │ │ │ ├── BRD4169B_EFR32MG14_async_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_async_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_async_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13_async_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14_async_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_async_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_async_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_async_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_async_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_async_polled.xml │ │ │ ├── EFM32PG12B_async_polled.xml │ │ │ ├── EFM32PG1B_async_polled.xml │ │ │ ├── EFM32TG11_async_polled.xml │ │ │ ├── EFR32BG12P_async_polled.xml │ │ │ ├── EFR32BG13_async_polled.xml │ │ │ ├── EFR32BG1P_async_polled.xml │ │ │ ├── EFR32FG12P_async_polled.xml │ │ │ ├── EFR32FG13_async_polled.xml │ │ │ ├── EFR32FG14_async_polled.xml │ │ │ ├── EFR32FG1P_async_polled.xml │ │ │ ├── EFR32MG12P_async_polled.xml │ │ │ ├── EFR32MG13_async_polled.xml │ │ │ ├── EFR32MG14_async_polled.xml │ │ │ └── EFR32MG1P_async_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11_async_polled.ewd │ │ │ ├── EFM32GG11_async_polled.ewp │ │ │ ├── EFM32PG12B_async_polled.ewd │ │ │ ├── EFM32PG12B_async_polled.ewp │ │ │ ├── EFM32PG1B_async_polled.ewd │ │ │ ├── EFM32PG1B_async_polled.ewp │ │ │ ├── EFM32TG11_async_polled.ewd │ │ │ ├── EFM32TG11_async_polled.ewp │ │ │ ├── EFR32BG12P_async_polled.ewd │ │ │ ├── EFR32BG12P_async_polled.ewp │ │ │ ├── EFR32BG13_async_polled.ewd │ │ │ ├── EFR32BG13_async_polled.ewp │ │ │ ├── EFR32BG1P_async_polled.ewd │ │ │ ├── EFR32BG1P_async_polled.ewp │ │ │ ├── EFR32FG12P_async_polled.ewd │ │ │ ├── EFR32FG12P_async_polled.ewp │ │ │ ├── EFR32FG13_async_polled.ewd │ │ │ ├── EFR32FG13_async_polled.ewp │ │ │ ├── EFR32FG14_async_polled.ewd │ │ │ ├── EFR32FG14_async_polled.ewp │ │ │ ├── EFR32FG1P_async_polled.ewd │ │ │ ├── EFR32FG1P_async_polled.ewp │ │ │ ├── EFR32MG12P_async_polled.ewd │ │ │ ├── EFR32MG12P_async_polled.ewp │ │ │ ├── EFR32MG13_async_polled.ewd │ │ │ ├── EFR32MG13_async_polled.ewp │ │ │ ├── EFR32MG14_async_polled.ewd │ │ │ ├── EFR32MG14_async_polled.ewp │ │ │ ├── EFR32MG1P_async_polled.ewd │ │ │ ├── EFR32MG1P_async_polled.ewp │ │ │ └── async_polled.eww │ │ ├── readme_pg1_efr.txt │ │ ├── readme_xg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_xg11.c │ │ │ └── main_s1_xg12.c │ ├── gpio_prs_ldma_usart │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFM32BG1_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4103A_EFR32BG12_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4104A_EFR32BG13_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4159A_EFR32MG13_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4164A_EFM32MG12_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4169B_EFR32MG14_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4250A_EFM32FG1_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4253A_EFR32FG12_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4256A_EFR32FG13_gpio_prs_ldma_usart.slsproj │ │ │ ├── BRD4257A_EFR32FG14_gpio_prs_ldma_usart.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_gpio_prs_ldma_usart.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_gpio_prs_ldma_usart.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_gpio_prs_ldma_usart.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_gpio_prs_ldma_usart.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_gpio_prs_ldma_usart.xml │ │ │ ├── EFM32PG12_gpio_prs_ldma_usart.xml │ │ │ ├── EFM32PG1B_gpio_prs_ldma_usart.xml │ │ │ ├── EFM32TG11_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32BG12_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32BG13_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32BG1P_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32FG12_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32FG13_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32FG14_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32FG1P_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32MG12_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32MG13_gpio_prs_ldma_usart.xml │ │ │ ├── EFR32MG14_gpio_prs_ldma_usart.xml │ │ │ └── EFR32MG1P_gpio_prs_ldma_usart.xml │ │ ├── iar │ │ │ ├── EFM32BG1_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32BG1_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32FG1_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32FG1_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32GG11_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32GG11_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32MG12_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32MG12_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32PG12_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32PG12_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32PG1_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32PG1_gpio_prs_ldma_usart.ewp │ │ │ ├── EFM32TG11_gpio_prs_ldma_usart.ewd │ │ │ ├── EFM32TG11_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32BG12_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32BG12_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32BG13_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32BG13_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32FG12_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32FG12_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32FG13_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32FG13_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32FG14_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32FG14_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32MG13_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32MG13_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32MG14_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32MG14_gpio_prs_ldma_usart.ewp │ │ │ ├── EFR32MG1P_gpio_prs_ldma_usart.ewd │ │ │ ├── EFR32MG1P_gpio_prs_ldma_usart.ewp │ │ │ └── gpio_prs_ldma_usart.eww │ │ ├── readme_s1.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1.c │ │ │ └── main_s1_tg11.c │ ├── spi_dma_master │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_spi_master_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_master_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_master_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_spi_master_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_master_dma.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_master_dma.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_master_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_spi_master_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12_spi_master_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13_spi_master_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14_spi_master_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_master_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_spi_master_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_master_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_master_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_spi_master_dma.xml │ │ │ ├── EFM32PG12_spi_master_dma.xml │ │ │ ├── EFM32PG1B_spi_master_dma.xml │ │ │ ├── EFM32TG11_spi_master_dma.xml │ │ │ ├── EFR32BG12_spi_master_dma.xml │ │ │ ├── EFR32BG13_spi_master_dma.xml │ │ │ ├── EFR32BG1P_spi_master_dma.xml │ │ │ ├── EFR32FG12_spi_master_dma.xml │ │ │ ├── EFR32FG13_spi_master_dma.xml │ │ │ ├── EFR32FG14_spi_master_dma.xml │ │ │ ├── EFR32FG1P_spi_master_dma.xml │ │ │ ├── EFR32MG12_spi_master_dma.xml │ │ │ ├── EFR32MG13_spi_master_dma.xml │ │ │ ├── EFR32MG14_spi_master_dma.xml │ │ │ └── EFR32MG1P_spi_master_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_master_dma.ewd │ │ │ ├── EFM32GG11_spi_master_dma.ewp │ │ │ ├── EFM32PG12_spi_master_dma.ewd │ │ │ ├── EFM32PG12_spi_master_dma.ewp │ │ │ ├── EFM32PG1B_spi_master_dma.ewd │ │ │ ├── EFM32PG1B_spi_master_dma.ewp │ │ │ ├── EFM32TG11_spi_master_dma.ewd │ │ │ ├── EFM32TG11_spi_master_dma.ewp │ │ │ ├── EFR32BG12_spi_master_dma.ewd │ │ │ ├── EFR32BG12_spi_master_dma.ewp │ │ │ ├── EFR32BG13_spi_master_dma.ewd │ │ │ ├── EFR32BG13_spi_master_dma.ewp │ │ │ ├── EFR32BG1P_spi_master_dma.ewd │ │ │ ├── EFR32BG1P_spi_master_dma.ewp │ │ │ ├── EFR32FG12_spi_master_dma.ewd │ │ │ ├── EFR32FG12_spi_master_dma.ewp │ │ │ ├── EFR32FG13_spi_master_dma.ewd │ │ │ ├── EFR32FG13_spi_master_dma.ewp │ │ │ ├── EFR32FG14_spi_master_dma.ewd │ │ │ ├── EFR32FG14_spi_master_dma.ewp │ │ │ ├── EFR32FG1P_spi_master_dma.ewd │ │ │ ├── EFR32FG1P_spi_master_dma.ewp │ │ │ ├── EFR32MG12_spi_master_dma.ewd │ │ │ ├── EFR32MG12_spi_master_dma.ewp │ │ │ ├── EFR32MG13_spi_master_dma.ewd │ │ │ ├── EFR32MG13_spi_master_dma.ewp │ │ │ ├── EFR32MG14_spi_master_dma.ewd │ │ │ ├── EFR32MG14_spi_master_dma.ewp │ │ │ ├── EFR32MG1P_spi_master_dma.ewd │ │ │ ├── EFR32MG1P_spi_master_dma.ewp │ │ │ └── spi_master.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_tg11.c │ │ │ └── main_s1_xg12.c │ ├── spi_dma_slave │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_spi_slave_dma.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_slave_dma.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_slave_dma.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_spi_slave_dma.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_slave_dma.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_slave_dma.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_slave_dma.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_spi_slave_dma.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_spi_slave_dma.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_spi_slave_dma.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_spi_slave_dma.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_slave_dma.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_spi_slave_dma.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_slave_dma.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_slave_dma.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_spi_slave_dma.xml │ │ │ ├── EFM32PG12_spi_slave_dma.xml │ │ │ ├── EFM32PG1B_spi_slave_dma.xml │ │ │ ├── EFM32TG11_spi_slave_dma.xml │ │ │ ├── EFR32BG12_spi_slave_dma.xml │ │ │ ├── EFR32BG13_spi_slave_dma.xml │ │ │ ├── EFR32BG1P_spi_slave_dma.xml │ │ │ ├── EFR32FG12P_spi_slave_dma.xml │ │ │ ├── EFR32FG13P_spi_slave_dma.xml │ │ │ ├── EFR32FG14P_spi_slave_dma.xml │ │ │ ├── EFR32FG1P_spi_slave_dma.xml │ │ │ ├── EFR32MG12_spi_slave_dma.xml │ │ │ ├── EFR32MG13_spi_slave_dma.xml │ │ │ ├── EFR32MG14_spi_slave_dma.xml │ │ │ └── EFR32MG1P_spi_slave_dma.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_slave_dma.ewd │ │ │ ├── EFM32GG11_spi_slave_dma.ewp │ │ │ ├── EFM32PG12_spi_slave_dma.ewd │ │ │ ├── EFM32PG12_spi_slave_dma.ewp │ │ │ ├── EFM32PG1B_spi_slave_dma.ewd │ │ │ ├── EFM32PG1B_spi_slave_dma.ewp │ │ │ ├── EFM32TG11_spi_slave_dma.ewd │ │ │ ├── EFM32TG11_spi_slave_dma.ewp │ │ │ ├── EFR32BG12_spi_slave_dma.ewd │ │ │ ├── EFR32BG12_spi_slave_dma.ewp │ │ │ ├── EFR32BG13_spi_slave_dma.ewd │ │ │ ├── EFR32BG13_spi_slave_dma.ewp │ │ │ ├── EFR32BG1P_spi_slave_dma.ewd │ │ │ ├── EFR32BG1P_spi_slave_dma.ewp │ │ │ ├── EFR32FG12P_spi_slave_dma.ewd │ │ │ ├── EFR32FG12P_spi_slave_dma.ewp │ │ │ ├── EFR32FG13P_spi_slave_dma.ewd │ │ │ ├── EFR32FG13P_spi_slave_dma.ewp │ │ │ ├── EFR32FG14P_spi_slave_dma.ewd │ │ │ ├── EFR32FG14P_spi_slave_dma.ewp │ │ │ ├── EFR32FG1P_spi_slave_dma.ewd │ │ │ ├── EFR32FG1P_spi_slave_dma.ewp │ │ │ ├── EFR32MG12_spi_slave_dma.ewd │ │ │ ├── EFR32MG12_spi_slave_dma.ewp │ │ │ ├── EFR32MG13_spi_slave_dma.ewd │ │ │ ├── EFR32MG13_spi_slave_dma.ewp │ │ │ ├── EFR32MG14_spi_slave_dma.ewd │ │ │ ├── EFR32MG14_spi_slave_dma.ewp │ │ │ ├── EFR32MG1P_spi_slave_dma.ewd │ │ │ ├── EFR32MG1P_spi_slave_dma.ewp │ │ │ └── spi_slave.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_tg11.c │ │ │ └── main_s1_xg12.c │ ├── spi_master_dma_prs_gpio │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4253A_EFR32FG12_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4256A_EFR32FG13_spi_master_dma_prs_gpio.slsproj │ │ │ ├── BRD4257A_EFR32FG14_spi_master_dma_prs_gpio.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_master_dma_prs_gpio.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_spi_master_dma_prs_gpio.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_master_dma_prs_gpio.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_master_dma_prs_gpio.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32PG12_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32PG1B_spi_master_dma_prs_gpio.xml │ │ │ ├── EFM32TG11_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32BG12_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32BG13_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32BG1P_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32FG12_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32FG13_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32FG14_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32FG1P_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32MG12_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32MG13_spi_master_dma_prs_gpio.xml │ │ │ ├── EFR32MG14_spi_master_dma_prs_gpio.xml │ │ │ └── EFR32MG1P_spi_master_dma_prs_gpio.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32GG11_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32PG12_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32PG12_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32PG1B_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32PG1B_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFM32TG11_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFM32TG11_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32BG12_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32BG12_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32BG13_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32BG13_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32BG1P_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32BG1P_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32FG12_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32FG12_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32FG13_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32FG13_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32FG14_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32FG14_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32FG1P_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32FG1P_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32MG12_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32MG12_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32MG13_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32MG13_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32MG14_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32MG14_spi_master_dma_prs_gpio.ewp │ │ │ ├── EFR32MG1P_spi_master_dma_prs_gpio.ewd │ │ │ ├── EFR32MG1P_spi_master_dma_prs_gpio.ewp │ │ │ └── spi_master__dma_prs_gpio.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_tg11.c │ │ │ └── main_s1_xg12.c │ ├── spi_master_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1_spi_master_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_master_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_master_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1_spi_master_interrupt.slsproj │ │ │ ├── BRD4158A_EFR32MG13_spi_master_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_master_interrupt.slsproj │ │ │ ├── BRD4162A_EFR32MG12_spi_master_interrupt.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_master_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_master_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1_spi_master_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12_spi_master_interrupt.slsproj │ │ │ ├── BRD4255A_EFR32FG13_spi_master_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13_spi_master_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14_spi_master_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_master_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_spi_master_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_master_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_master_interrupt.slsproj │ │ ├── doc │ │ │ ├── BRD4100A_EFR32BG1_spi_master_interrupt.xml │ │ │ ├── BRD4103A_EFR32BG12_spi_master_interrupt.xml │ │ │ ├── BRD4104A_EFR32BG13_spi_master_interrupt.xml │ │ │ ├── BRD4151A_EFR32MG1_spi_master_interrupt.xml │ │ │ ├── BRD4158A_EFR32MG13_spi_master_interrupt.xml │ │ │ ├── BRD4159A_EFR32MG13_spi_master_interrupt.xml │ │ │ ├── BRD4162A_EFR32MG12_spi_master_interrupt.xml │ │ │ ├── BRD4164A_EFR32MG12_spi_master_interrupt.xml │ │ │ ├── BRD4169B_EFR32MG14_spi_master_interrupt.xml │ │ │ ├── BRD4250A_EFR32FG1_spi_master_interrupt.xml │ │ │ ├── BRD4253A_EFR32FG12_spi_master_interrupt.xml │ │ │ ├── BRD4255A_EFR32FG13_spi_master_interrupt.xml │ │ │ ├── BRD4256A_EFR32FG13_spi_master_interrupt.xml │ │ │ ├── BRD4257A_EFR32FG14_spi_master_interrupt.xml │ │ │ ├── SLSTK3301A_EFM32TG11_spi_master_interrupt.xml │ │ │ ├── SLSTK3401A_EFM32PG1_spi_master_interrupt.xml │ │ │ ├── SLSTK3402A_EFM32PG12_spi_master_interrupt.xml │ │ │ └── SLSTK3701A_EFM32GG11_spi_master_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_master_interrupt.ewd │ │ │ ├── EFM32GG11_spi_master_interrupt.ewp │ │ │ ├── EFM32PG12_spi_master_interrupt.ewd │ │ │ ├── EFM32PG12_spi_master_interrupt.ewp │ │ │ ├── EFM32PG1_spi_master_interrupt.ewd │ │ │ ├── EFM32PG1_spi_master_interrupt.ewp │ │ │ ├── EFM32TG11_spi_master_interrupt.ewd │ │ │ ├── EFM32TG11_spi_master_interrupt.ewp │ │ │ ├── EFR32BG12_spi_master_interrupt.ewd │ │ │ ├── EFR32BG12_spi_master_interrupt.ewp │ │ │ ├── EFR32BG13_spi_master_interrupt.ewd │ │ │ ├── EFR32BG13_spi_master_interrupt.ewp │ │ │ ├── EFR32BG1_spi_master_interrupt.ewd │ │ │ ├── EFR32BG1_spi_master_interrupt.ewp │ │ │ ├── EFR32FG12_spi_master_interrupt.ewd │ │ │ ├── EFR32FG12_spi_master_interrupt.ewp │ │ │ ├── EFR32FG13_spi_master_interrupt.ewd │ │ │ ├── EFR32FG13_spi_master_interrupt.ewp │ │ │ ├── EFR32FG14_spi_master_interrupt.ewd │ │ │ ├── EFR32FG14_spi_master_interrupt.ewp │ │ │ ├── EFR32FG1_spi_master_interrupt.ewd │ │ │ ├── EFR32FG1_spi_master_interrupt.ewp │ │ │ ├── EFR32MG12_spi_master_interrupt.ewd │ │ │ ├── EFR32MG12_spi_master_interrupt.ewp │ │ │ ├── EFR32MG13_spi_master_interrupt.ewd │ │ │ ├── EFR32MG13_spi_master_interrupt.ewp │ │ │ ├── EFR32MG14_spi_master_interrupt.ewd │ │ │ ├── EFR32MG14_spi_master_interrupt.ewp │ │ │ ├── EFR32MG1_spi_master_interrupt.ewd │ │ │ ├── EFR32MG1_spi_master_interrupt.ewp │ │ │ └── spi_master_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_tg11.c │ │ │ ├── main_s1_xg12.c │ │ │ └── main_s1_xg1_xg13_xg14.c │ ├── spi_master_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_spi_master_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_master_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_master_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_spi_master_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_master_polled.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_master_polled.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_master_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_spi_master_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12_spi_master_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13_spi_master_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14_spi_master_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_master_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_spi_master_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_master_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_master_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_spi_master_polled.xml │ │ │ ├── EFM32PG12_spi_master_polled.xml │ │ │ ├── EFM32PG1B_spi_master_polled.xml │ │ │ ├── EFM32TG11_spi_master_polled.xml │ │ │ ├── EFR32BG12_spi_master_polled.xml │ │ │ ├── EFR32BG13_spi_master_polled.xml │ │ │ ├── EFR32BG1P_spi_master_polled.xml │ │ │ ├── EFR32FG12_spi_master_polled.xml │ │ │ ├── EFR32FG13_spi_master_polled.xml │ │ │ ├── EFR32FG14_spi_master_polled.xml │ │ │ ├── EFR32FG1P_spi_master_polled.xml │ │ │ ├── EFR32MG12_spi_master_polled.xml │ │ │ ├── EFR32MG13_spi_master_polled.xml │ │ │ ├── EFR32MG14_spi_master_polled.xml │ │ │ └── EFR32MG1P_spi_master_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_master_polled.ewd │ │ │ ├── EFM32GG11_spi_master_polled.ewp │ │ │ ├── EFM32PG12_spi_master_polled.ewd │ │ │ ├── EFM32PG12_spi_master_polled.ewp │ │ │ ├── EFM32PG1B_spi_master_polled.ewd │ │ │ ├── EFM32PG1B_spi_master_polled.ewp │ │ │ ├── EFM32TG11_spi_master_polled.ewd │ │ │ ├── EFM32TG11_spi_master_polled.ewp │ │ │ ├── EFR32BG12_spi_master_polled.ewd │ │ │ ├── EFR32BG12_spi_master_polled.ewp │ │ │ ├── EFR32BG13_spi_master_polled.ewd │ │ │ ├── EFR32BG13_spi_master_polled.ewp │ │ │ ├── EFR32BG1P_spi_master_polled.ewd │ │ │ ├── EFR32BG1P_spi_master_polled.ewp │ │ │ ├── EFR32FG12_spi_master_polled.ewd │ │ │ ├── EFR32FG12_spi_master_polled.ewp │ │ │ ├── EFR32FG13_spi_master_polled.ewd │ │ │ ├── EFR32FG13_spi_master_polled.ewp │ │ │ ├── EFR32FG14_spi_master_polled.ewd │ │ │ ├── EFR32FG14_spi_master_polled.ewp │ │ │ ├── EFR32FG1P_spi_master_polled.ewd │ │ │ ├── EFR32FG1P_spi_master_polled.ewp │ │ │ ├── EFR32MG12_spi_master_polled.ewd │ │ │ ├── EFR32MG12_spi_master_polled.ewp │ │ │ ├── EFR32MG13_spi_master_polled.ewd │ │ │ ├── EFR32MG13_spi_master_polled.ewp │ │ │ ├── EFR32MG14_spi_master_polled.ewd │ │ │ ├── EFR32MG14_spi_master_polled.ewp │ │ │ ├── EFR32MG1P_spi_master_polled.ewd │ │ │ ├── EFR32MG1P_spi_master_polled.ewp │ │ │ └── spi_master.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_tg11.c │ │ │ └── main_s1_xg12.c │ ├── spi_slave_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1_spi_slave_interrupt.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_slave_interrupt.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_slave_interrupt.slsproj │ │ │ ├── BRD4151A_EFR32MG1_spi_slave_interrupt.slsproj │ │ │ ├── BRD4158A_EFR32MG13_spi_slave_interrupt.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_slave_interrupt.slsproj │ │ │ ├── BRD4162A_EFR32MG12_spi_slave_interrupt.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_slave_interrupt.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_slave_interrupt.slsproj │ │ │ ├── BRD4250A_EFR32FG1_spi_slave_interrupt.slsproj │ │ │ ├── BRD4253A_EFR32FG12_spi_slave_interrupt.slsproj │ │ │ ├── BRD4255A_EFR32FG13_spi_slave_interrupt.slsproj │ │ │ ├── BRD4256A_EFR32FG13_spi_slave_interrupt.slsproj │ │ │ ├── BRD4257A_EFR32FG14_spi_slave_interrupt.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_slave_interrupt.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1_spi_slave_interrupt.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_slave_interrupt.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_slave_interrupt.slsproj │ │ ├── doc │ │ │ ├── BRD4100A_EFR32BG1_spi_slave_interrupt.xml │ │ │ ├── BRD4103A_EFR32BG12_spi_slave_interrupt.xml │ │ │ ├── BRD4104A_EFR32BG13_spi_slave_interrupt.xml │ │ │ ├── BRD4151A_EFR32MG1_spi_slave_interrupt.xml │ │ │ ├── BRD4158A_EFR32MG13_spi_slave_interrupt.xml │ │ │ ├── BRD4159A_EFR32MG13_spi_slave_interrupt.xml │ │ │ ├── BRD4162A_EFR32MG12_spi_slave_interrupt.xml │ │ │ ├── BRD4164A_EFR32MG12_spi_slave_interrupt.xml │ │ │ ├── BRD4169B_EFR32MG14_spi_slave_interrupt.xml │ │ │ ├── BRD4250A_EFR32FG1_spi_slave_interrupt.xml │ │ │ ├── BRD4253A_EFR32FG12_spi_slave_interrupt.xml │ │ │ ├── BRD4255A_EFR32FG13_spi_slave_interrupt.xml │ │ │ ├── BRD4256A_EFR32FG13_spi_slave_interrupt.xml │ │ │ ├── BRD4257A_EFR32FG14_spi_slave_interrupt.xml │ │ │ ├── SLSTK3301A_EFM32TG11_spi_slave_interrupt.xml │ │ │ ├── SLSTK3401A_EFM32PG1_spi_slave_interrupt.xml │ │ │ ├── SLSTK3402A_EFM32PG12_spi_slave_interrupt.xml │ │ │ └── SLSTK3701A_EFM32GG11_spi_slave_interrupt.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_slave_interrupt.ewd │ │ │ ├── EFM32GG11_spi_slave_interrupt.ewp │ │ │ ├── EFM32PG12_spi_slave_interrupt.ewd │ │ │ ├── EFM32PG12_spi_slave_interrupt.ewp │ │ │ ├── EFM32PG1_spi_slave_interrupt.ewd │ │ │ ├── EFM32PG1_spi_slave_interrupt.ewp │ │ │ ├── EFM32TG11_spi_slave_interrupt.ewd │ │ │ ├── EFM32TG11_spi_slave_interrupt.ewp │ │ │ ├── EFR32BG12_spi_slave_interrupt.ewd │ │ │ ├── EFR32BG12_spi_slave_interrupt.ewp │ │ │ ├── EFR32BG13_spi_slave_interrupt.ewd │ │ │ ├── EFR32BG13_spi_slave_interrupt.ewp │ │ │ ├── EFR32BG1_spi_slave_interrupt.ewd │ │ │ ├── EFR32BG1_spi_slave_interrupt.ewp │ │ │ ├── EFR32FG12_spi_slave_interrupt.ewd │ │ │ ├── EFR32FG12_spi_slave_interrupt.ewp │ │ │ ├── EFR32FG13_spi_slave_interrupt.ewd │ │ │ ├── EFR32FG13_spi_slave_interrupt.ewp │ │ │ ├── EFR32FG14_spi_slave_interrupt.ewd │ │ │ ├── EFR32FG14_spi_slave_interrupt.ewp │ │ │ ├── EFR32FG1_spi_slave_interrupt.ewd │ │ │ ├── EFR32FG1_spi_slave_interrupt.ewp │ │ │ ├── EFR32MG12_spi_slave_interrupt.ewd │ │ │ ├── EFR32MG12_spi_slave_interrupt.ewp │ │ │ ├── EFR32MG13_spi_slave_interrupt.ewd │ │ │ ├── EFR32MG13_spi_slave_interrupt.ewp │ │ │ ├── EFR32MG14_spi_slave_interrupt.ewd │ │ │ ├── EFR32MG14_spi_slave_interrupt.ewp │ │ │ ├── EFR32MG1_spi_slave_interrupt.ewd │ │ │ ├── EFR32MG1_spi_slave_interrupt.ewp │ │ │ └── spi_slave_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_tg11.c │ │ │ ├── main_s1_xg12.c │ │ │ └── main_s1_xg1_xg13_xg14.c │ ├── spi_slave_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_spi_slave_polled.slsproj │ │ │ ├── BRD4103A_EFR32BG12_spi_slave_polled.slsproj │ │ │ ├── BRD4104A_EFR32BG13_spi_slave_polled.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_spi_slave_polled.slsproj │ │ │ ├── BRD4159A_EFR32MG13_spi_slave_polled.slsproj │ │ │ ├── BRD4164A_EFR32MG12_spi_slave_polled.slsproj │ │ │ ├── BRD4169B_EFR32MG14_spi_slave_polled.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_spi_slave_polled.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_spi_slave_polled.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_spi_slave_polled.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_spi_slave_polled.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11_spi_slave_polled.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_spi_slave_polled.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12_spi_slave_polled.slsproj │ │ │ └── SLSTK3701A_EFM32GG11_spi_slave_polled.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11_spi_slave_polled.xml │ │ │ ├── EFM32PG12_spi_slave_polled.xml │ │ │ ├── EFM32PG1B_spi_slave_polled.xml │ │ │ ├── EFM32TG11_spi_slave_polled.xml │ │ │ ├── EFR32BG12_spi_slave_polled.xml │ │ │ ├── EFR32BG13_spi_slave_polled.xml │ │ │ ├── EFR32BG1P_spi_slave_polled.xml │ │ │ ├── EFR32FG12P_spi_slave_polled.xml │ │ │ ├── EFR32FG13P_spi_slave_polled.xml │ │ │ ├── EFR32FG14P_spi_slave_polled.xml │ │ │ ├── EFR32FG1P_spi_slave_polled.xml │ │ │ ├── EFR32MG12_spi_slave_polled.xml │ │ │ ├── EFR32MG13_spi_slave_polled.xml │ │ │ ├── EFR32MG14_spi_slave_polled.xml │ │ │ └── EFR32MG1P_spi_slave_polled.xml │ │ ├── iar │ │ │ ├── EFM32GG11_spi_slave_polled.ewd │ │ │ ├── EFM32GG11_spi_slave_polled.ewp │ │ │ ├── EFM32PG12_spi_slave_polled.ewd │ │ │ ├── EFM32PG12_spi_slave_polled.ewp │ │ │ ├── EFM32PG1B_spi_slave_polled.ewd │ │ │ ├── EFM32PG1B_spi_slave_polled.ewp │ │ │ ├── EFM32TG11_spi_slave_polled.ewd │ │ │ ├── EFM32TG11_spi_slave_polled.ewp │ │ │ ├── EFR32BG12_spi_slave_polled.ewd │ │ │ ├── EFR32BG12_spi_slave_polled.ewp │ │ │ ├── EFR32BG13_spi_slave_polled.ewd │ │ │ ├── EFR32BG13_spi_slave_polled.ewp │ │ │ ├── EFR32BG1P_spi_slave_polled.ewd │ │ │ ├── EFR32BG1P_spi_slave_polled.ewp │ │ │ ├── EFR32FG12P_spi_slave_polled.ewd │ │ │ ├── EFR32FG12P_spi_slave_polled.ewp │ │ │ ├── EFR32FG13P_spi_slave_polled.ewd │ │ │ ├── EFR32FG13P_spi_slave_polled.ewp │ │ │ ├── EFR32FG14P_spi_slave_polled.ewd │ │ │ ├── EFR32FG14P_spi_slave_polled.ewp │ │ │ ├── EFR32FG1P_spi_slave_polled.ewd │ │ │ ├── EFR32FG1P_spi_slave_polled.ewp │ │ │ ├── EFR32MG12_spi_slave_polled.ewd │ │ │ ├── EFR32MG12_spi_slave_polled.ewp │ │ │ ├── EFR32MG13_spi_slave_polled.ewd │ │ │ ├── EFR32MG13_spi_slave_polled.ewp │ │ │ ├── EFR32MG14_spi_slave_polled.ewd │ │ │ ├── EFR32MG14_spi_slave_polled.ewp │ │ │ ├── EFR32MG1P_spi_slave_polled.ewd │ │ │ ├── EFR32MG1P_spi_slave_polled.ewp │ │ │ └── spi_slave.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ │ ├── main_s1_gg11.c │ │ │ ├── main_s1_pg1_efr.c │ │ │ ├── main_s1_tg11.c │ │ │ └── main_s1_xg12.c │ └── spi_transfer_dma_prs_letimer │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4103A_EFR32BG12_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4104A_EFR32BG13_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4151A_EFR32MG1P_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4159A_EFR32MG13_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4164A_EFR32MG12_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4169B_EFR32MG14_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4250A_EFR32FG1P_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4253A_EFR32FG12_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4256A_EFR32FG13_spi_master_dma_prs_letimer.slsproj │ │ ├── BRD4257A_EFR32FG14_spi_master_dma_prs_letimer.slsproj │ │ ├── SLSTK3301A_EFM32TG11_spi_master_dma_prs_letimer.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_spi_master_dma_prs_letimer.slsproj │ │ ├── SLSTK3402A_EFM32PG12_spi_master_dma_prs_letimer.slsproj │ │ └── SLSTK3701A_EFM32GG11_spi_master_dma_prs_letimer.slsproj │ │ ├── doc │ │ ├── EFM32GG11_spi_master_dma_prs_letimer.xml │ │ ├── EFM32PG12_spi_master_dma_prs_letimer.xml │ │ ├── EFM32PG1B_spi_master_dma_prs_letimer.xml │ │ ├── EFM32TG11_spi_master_dma_prs_letimer.xml │ │ ├── EFR32BG12_spi_master_dma_prs_letimer.xml │ │ ├── EFR32BG13_spi_master_dma_prs_letimer.xml │ │ ├── EFR32BG1P_spi_master_dma_prs_letimer.xml │ │ ├── EFR32FG12_spi_master_dma_prs_letimer.xml │ │ ├── EFR32FG13_spi_master_dma_prs_letimer.xml │ │ ├── EFR32FG14_spi_master_dma_prs_letimer.xml │ │ ├── EFR32FG1P_spi_master_dma_prs_letimer.xml │ │ ├── EFR32MG12_spi_master_dma_prs_letimer.xml │ │ ├── EFR32MG13_spi_master_dma_prs_letimer.xml │ │ ├── EFR32MG14_spi_master_dma_prs_letimer.xml │ │ └── EFR32MG1P_spi_master_dma_prs_letimer.xml │ │ ├── iar │ │ ├── EFM32GG11_spi_master_dma_prs_letimer.ewd │ │ ├── EFM32GG11_spi_master_dma_prs_letimer.ewp │ │ ├── EFM32PG12_spi_master_dma_prs_letimer.ewd │ │ ├── EFM32PG12_spi_master_dma_prs_letimer.ewp │ │ ├── EFM32PG1B_spi_master_dma_prs_letimer.ewd │ │ ├── EFM32PG1B_spi_master_dma_prs_letimer.ewp │ │ ├── EFM32TG11_spi_master_dma_prs_letimer.ewd │ │ ├── EFM32TG11_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32BG12_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32BG12_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32BG13_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32BG13_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32BG1P_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32BG1P_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32FG12_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32FG12_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32FG13_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32FG13_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32FG14_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32FG14_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32FG1P_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32FG1P_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32MG12_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32MG12_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32MG13_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32MG13_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32MG14_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32MG14_spi_master_dma_prs_letimer.ewp │ │ ├── EFR32MG1P_spi_master_dma_prs_letimer.ewd │ │ ├── EFR32MG1P_spi_master_dma_prs_letimer.ewp │ │ └── spi_master_dma_prs_letimer.eww │ │ ├── readme_gg11.txt │ │ ├── readme_pg1_efr.txt │ │ ├── readme_tg11.txt │ │ ├── readme_xg12.txt │ │ └── src │ │ ├── main_s1_gg11.c │ │ ├── main_s1_pg1_efr.c │ │ ├── main_s1_tg11.c │ │ └── main_s1_xg12.c ├── vdac │ ├── vdac_continuous │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_vdac_continuous.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_vdac_continuous.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_vdac_continuous.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_vdac_continuous.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_vdac_continuous.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_vdac_continuous.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_vdac_continuous.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_vdac_continuous.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_vdac_continuous.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_vdac_continuous.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_vdac_continuous.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_vdac_continuous.xml │ │ │ ├── EFM32PG12B_vdac_continuous.xml │ │ │ ├── EFM32TG11B_vdac_continuous.xml │ │ │ ├── EFR32BG12P_vdac_continuous.xml │ │ │ ├── EFR32BG13P_vdac_continuous.xml │ │ │ ├── EFR32FG12P_vdac_continuous.xml │ │ │ ├── EFR32FG13P_vdac_continuous.xml │ │ │ ├── EFR32FG14P_vdac_continuous.xml │ │ │ ├── EFR32MG12P_vdac_continuous.xml │ │ │ ├── EFR32MG13P_vdac_continuous.xml │ │ │ └── EFR32MG14P_vdac_continuous.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_vdac_continuous.ewd │ │ │ ├── EFM32GG11B_vdac_continuous.ewp │ │ │ ├── EFM32PG12B_vdac_continuous.ewd │ │ │ ├── EFM32PG12B_vdac_continuous.ewp │ │ │ ├── EFM32TG11B_vdac_continuous.ewd │ │ │ ├── EFM32TG11B_vdac_continuous.ewp │ │ │ ├── EFR32BG12P_vdac_continuous.ewd │ │ │ ├── EFR32BG12P_vdac_continuous.ewp │ │ │ ├── EFR32BG13P_vdac_continuous.ewd │ │ │ ├── EFR32BG13P_vdac_continuous.ewp │ │ │ ├── EFR32FG12P_vdac_continuous.ewd │ │ │ ├── EFR32FG12P_vdac_continuous.ewp │ │ │ ├── EFR32FG13P_vdac_continuous.ewd │ │ │ ├── EFR32FG13P_vdac_continuous.ewp │ │ │ ├── EFR32FG14P_vdac_continuous.ewd │ │ │ ├── EFR32FG14P_vdac_continuous.ewp │ │ │ ├── EFR32MG12P_vdac_continuous.ewd │ │ │ ├── EFR32MG12P_vdac_continuous.ewp │ │ │ ├── EFR32MG13P_vdac_continuous.ewd │ │ │ ├── EFR32MG13P_vdac_continuous.ewp │ │ │ ├── EFR32MG14P_vdac_continuous.ewd │ │ │ ├── EFR32MG14P_vdac_continuous.ewp │ │ │ └── vdac_continuous.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── vdac_differential │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_vdac_differential.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_vdac_differential.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_vdac_differential.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_vdac_differential.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_vdac_differential.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_vdac_differential.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_vdac_differential.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_vdac_differential.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_vdac_differential.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_vdac_differential.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_vdac_differential.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_vdac_differential.xml │ │ │ ├── EFM32PG12B_vdac_differential.xml │ │ │ ├── EFM32TG11B_vdac_differential.xml │ │ │ ├── EFR32BG12P_vdac_differential.xml │ │ │ ├── EFR32BG13P_vdac_differential.xml │ │ │ ├── EFR32FG12P_vdac_differential.xml │ │ │ ├── EFR32FG13P_vdac_differential.xml │ │ │ ├── EFR32FG14P_vdac_differential.xml │ │ │ ├── EFR32MG12P_vdac_differential.xml │ │ │ ├── EFR32MG13P_vdac_differential.xml │ │ │ └── EFR32MG14P_vdac_differential.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_vdac_differential.ewd │ │ │ ├── EFM32GG11B_vdac_differential.ewp │ │ │ ├── EFM32PG12B_vdac_differential.ewd │ │ │ ├── EFM32PG12B_vdac_differential.ewp │ │ │ ├── EFM32TG11B_vdac_differential.ewd │ │ │ ├── EFM32TG11B_vdac_differential.ewp │ │ │ ├── EFR32BG12P_vdac_differential.ewd │ │ │ ├── EFR32BG12P_vdac_differential.ewp │ │ │ ├── EFR32BG13P_vdac_differential.ewd │ │ │ ├── EFR32BG13P_vdac_differential.ewp │ │ │ ├── EFR32FG12P_vdac_differential.ewd │ │ │ ├── EFR32FG12P_vdac_differential.ewp │ │ │ ├── EFR32FG13P_vdac_differential.ewd │ │ │ ├── EFR32FG13P_vdac_differential.ewp │ │ │ ├── EFR32FG14P_vdac_differential.ewd │ │ │ ├── EFR32FG14P_vdac_differential.ewp │ │ │ ├── EFR32MG12P_vdac_differential.ewd │ │ │ ├── EFR32MG12P_vdac_differential.ewp │ │ │ ├── EFR32MG13P_vdac_differential.ewd │ │ │ ├── EFR32MG13P_vdac_differential.ewp │ │ │ ├── EFR32MG14P_vdac_differential.ewd │ │ │ ├── EFR32MG14P_vdac_differential.ewp │ │ │ └── vdac_differential.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_radio12_pg12_gg11.c │ │ │ ├── main_radio13_radio14.c │ │ │ └── main_tg11.c │ ├── vdac_sine_wave_synch │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_vdac_sine_wave_synch.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_vdac_sine_wave_synch.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_vdac_sine_wave_synch.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_vdac_sine_wave_synch.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_vdac_sine_wave_synch.xml │ │ │ ├── EFM32PG12B_vdac_sine_wave_synch.xml │ │ │ ├── EFM32TG11B_vdac_sine_wave_synch.xml │ │ │ ├── EFR32BG12P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32BG13P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32FG12P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32FG13P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32FG14P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32MG12P_vdac_sine_wave_synch.xml │ │ │ ├── EFR32MG13P_vdac_sine_wave_synch.xml │ │ │ └── EFR32MG14P_vdac_sine_wave_synch.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32GG11B_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32PG12B_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32PG12B_vdac_sine_wave_synch.ewp │ │ │ ├── EFM32TG11B_vdac_sine_wave_synch.ewd │ │ │ ├── EFM32TG11B_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32BG12P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32BG12P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32BG13P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32BG13P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32FG12P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32FG12P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32FG13P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32FG13P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32FG14P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32FG14P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32MG12P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32MG12P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32MG13P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32MG13P_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32MG14P_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32MG14P_vdac_sine_wave_synch.ewp │ │ │ └── vdac_sine_wave_synch.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ ├── vdac_single │ │ ├── SimplicityStudio │ │ │ ├── BRD4103A_EFR32BG12P_vdac_single.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_vdac_single.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_vdac_single.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_vdac_single.slsproj │ │ │ ├── BRD4169B_EFR32MG14P_vdac_single.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_vdac_single.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_vdac_single.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_vdac_single.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_vdac_single.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_vdac_single.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_vdac_single.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_vdac_single.xml │ │ │ ├── EFM32PG12B_vdac_single.xml │ │ │ ├── EFM32TG11B_vdac_single.xml │ │ │ ├── EFR32BG12P_vdac_single.xml │ │ │ ├── EFR32BG13P_vdac_single.xml │ │ │ ├── EFR32FG12P_vdac_single.xml │ │ │ ├── EFR32FG13P_vdac_single.xml │ │ │ ├── EFR32FG14P_vdac_single.xml │ │ │ ├── EFR32MG12P_vdac_single.xml │ │ │ ├── EFR32MG13P_vdac_single.xml │ │ │ └── EFR32MG14P_vdac_single.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_vdac_single.ewd │ │ │ ├── EFM32GG11B_vdac_single.ewp │ │ │ ├── EFM32PG12B_vdac_single.ewd │ │ │ ├── EFM32PG12B_vdac_single.ewp │ │ │ ├── EFM32TG11B_vdac_single.ewd │ │ │ ├── EFM32TG11B_vdac_single.ewp │ │ │ ├── EFR32BG12P_vdac_single.ewd │ │ │ ├── EFR32BG12P_vdac_single.ewp │ │ │ ├── EFR32BG13P_vdac_single.ewd │ │ │ ├── EFR32BG13P_vdac_single.ewp │ │ │ ├── EFR32FG12P_vdac_single.ewd │ │ │ ├── EFR32FG12P_vdac_single.ewp │ │ │ ├── EFR32FG13P_vdac_single.ewd │ │ │ ├── EFR32FG13P_vdac_single.ewp │ │ │ ├── EFR32FG14P_vdac_single.ewd │ │ │ ├── EFR32FG14P_vdac_single.ewp │ │ │ ├── EFR32MG12P_vdac_single.ewd │ │ │ ├── EFR32MG12P_vdac_single.ewp │ │ │ ├── EFR32MG13P_vdac_single.ewd │ │ │ ├── EFR32MG13P_vdac_single.ewp │ │ │ ├── EFR32MG14P_vdac_single.ewd │ │ │ ├── EFR32MG14P_vdac_single.ewp │ │ │ └── vdac_single.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s1.c │ │ │ └── main_tg11.c │ └── vdac_timer_dma_waveform │ │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4104A_EFR32BG13P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4159A_EFR32MG13P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4161A_EFR32MG12P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4169B_EFR32MG14P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4253A_EFR32FG12P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4256A_EFR32FG13P_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4257A_EFR32FG14P_vdac_timer_dma_waveform.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_vdac_timer_dma_waveform.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_vdac_timer_dma_waveform.slsproj │ │ └── SLSTK3701A_EFM32GG11B_vdac_timer_dma_waveform.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_vdac_timer_dma_waveform.xml │ │ ├── EFM32PG12B_vdac_timer_dma_waveform.xml │ │ ├── EFM32TG11B_vdac_timer_dma_waveform.xml │ │ ├── EFR32BG12P_vdac_timer_dma_waveform.xml │ │ ├── EFR32BG13P_vdac_timer_dma_waveform.xml │ │ ├── EFR32FG12P_vdac_timer_dma_waveform.xml │ │ ├── EFR32FG13P_vdac_timer_dma_waveform.xml │ │ ├── EFR32FG14P_vdac_timer_dma_waveform.xml │ │ ├── EFR32MG12P_vdac_timer_dma_waveform.xml │ │ ├── EFR32MG13P_vdac_timer_dma_waveform.xml │ │ └── EFR32MG14P_vdac_timer_dma_waveform.xml │ │ ├── iar │ │ ├── EFM32GG11B_vdac_timer_dma_waveform.ewd │ │ ├── EFM32GG11B_vdac_timer_dma_waveform.ewp │ │ ├── EFM32PG12B_vdac_timer_dma_waveform.ewd │ │ ├── EFM32PG12B_vdac_timer_dma_waveform.ewp │ │ ├── EFM32TG11B_vdac_timer_dma_waveform.ewd │ │ ├── EFM32TG11B_vdac_timer_dma_waveform.ewp │ │ ├── EFR32BG12P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32BG12P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32BG13P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32BG13P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32FG12P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32FG12P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32FG13P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32FG13P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32FG14P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32FG14P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32MG12P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32MG12P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32MG13P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32MG13P_vdac_timer_dma_waveform.ewp │ │ ├── EFR32MG14P_vdac_timer_dma_waveform.ewd │ │ ├── EFR32MG14P_vdac_timer_dma_waveform.ewp │ │ └── vdac_timer_dma_waveform.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_s1.c │ │ └── main_tg11.c ├── vmon │ ├── vmon_em4_wakeup │ │ ├── SimplicityStudio │ │ │ ├── BRD4100A_EFR32BG1P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4103A_EFR32BG12P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4104A_EFR32BG13P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4151A_EFR32MG1P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4159A_EFR32MG13P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4161A_EFR32MG12P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4169A_EFR32MG14P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4250A_EFR32FG1P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4253A_EFR32FG12P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4256A_EFR32FG13P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── BRD4257A_EFR32FG14P_emu_vmon_em4_wakeup.slsproj │ │ │ ├── SLSTK3301A_EFM32TG11B_emu_vmon_em4_wakeup.slsproj │ │ │ ├── SLSTK3401A_EFM32PG1B_emu_vmon_em4_wakeup.slsproj │ │ │ ├── SLSTK3402A_EFM32PG12B_emu_vmon_em4_wakeup.slsproj │ │ │ └── SLSTK3701A_EFM32GG11B_emu_vmon_em4_wakeup.slsproj │ │ ├── doc │ │ │ ├── EFM32GG11B_emu_vmon_em4_wakeup.xml │ │ │ ├── EFM32PG12B_emu_vmon_em4_wakeup.xml │ │ │ ├── EFM32PG1B_emu_vmon_em4_wakeup.xml │ │ │ ├── EFM32TG11B_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32BG12P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32BG13P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32BG1P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32FG12P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32FG13P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32FG14P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32FG1P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32MG12P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32MG13P_emu_vmon_em4_wakeup.xml │ │ │ ├── EFR32MG14P_emu_vmon_em4_wakeup.xml │ │ │ └── EFR32MG1P_emu_vmon_em4_wakeup.xml │ │ ├── iar │ │ │ ├── EFM32GG11B_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFM32GG11B_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFM32PG12B_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFM32PG12B_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFM32PG1B_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFM32PG1B_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFM32TG11B_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFM32TG11B_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32BG12P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32BG12P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32BG13P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32BG13P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32BG1P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32BG1P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32FG12P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32FG12P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32FG13P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32FG13P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32FG14P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32FG14P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32FG1P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32FG1P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32MG12P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32MG12P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32MG13P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32MG13P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32MG14P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32MG14P_emu_vmon_em4_wakeup.ewp │ │ │ ├── EFR32MG1P_emu_vmon_em4_wakeup.ewd │ │ │ ├── EFR32MG1P_emu_vmon_em4_wakeup.ewp │ │ │ └── emu_vmon_em4_wakeup.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_gg11.c │ └── vmon_interrupt │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_emu_vmon_interrupt.slsproj │ │ ├── BRD4103A_EFR32BG12P_emu_vmon_interrupt.slsproj │ │ ├── BRD4104A_EFR32BG13P_emu_vmon_interrupt.slsproj │ │ ├── BRD4151A_EFR32MG1P_emu_vmon_interrupt.slsproj │ │ ├── BRD4159A_EFR32MG13P_emu_vmon_interrupt.slsproj │ │ ├── BRD4161A_EFR32MG12P_emu_vmon_interrupt.slsproj │ │ ├── BRD4169A_EFR32MG14P_emu_vmon_interrupt.slsproj │ │ ├── BRD4250A_EFR32FG1P_emu_vmon_interrupt.slsproj │ │ ├── BRD4253A_EFR32FG12P_emu_vmon_interrupt.slsproj │ │ ├── BRD4256A_EFR32FG13P_emu_vmon_interrupt.slsproj │ │ ├── BRD4257A_EFR32FG14P_emu_vmon_interrupt.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_emu_vmon_interrupt.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_emu_vmon_interrupt.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_emu_vmon_interrupt.slsproj │ │ └── SLSTK3701A_EFM32GG11B_emu_vmon_interrupt.slsproj │ │ ├── doc │ │ ├── EFM32GG11B_emu_vmon_interrupt.xml │ │ ├── EFM32PG12B_emu_vmon_interrupt.xml │ │ ├── EFM32PG1B_emu_vmon_interrupt.xml │ │ ├── EFM32TG11B_emu_vmon_interrupt.xml │ │ ├── EFR32BG12P_emu_vmon_interrupt.xml │ │ ├── EFR32BG13P_emu_vmon_interrupt.xml │ │ ├── EFR32BG1P_emu_vmon_interrupt.xml │ │ ├── EFR32FG12P_emu_vmon_interrupt.xml │ │ ├── EFR32FG13P_emu_vmon_interrupt.xml │ │ ├── EFR32FG14P_emu_vmon_interrupt.xml │ │ ├── EFR32FG1P_emu_vmon_interrupt.xml │ │ ├── EFR32MG12P_emu_vmon_interrupt.xml │ │ ├── EFR32MG13P_emu_vmon_interrupt.xml │ │ ├── EFR32MG14P_emu_vmon_interrupt.xml │ │ └── EFR32MG1P_emu_vmon_interrupt.xml │ │ ├── iar │ │ ├── EFM32GG11B_emu_vmon_interrupt.ewd │ │ ├── EFM32GG11B_emu_vmon_interrupt.ewp │ │ ├── EFM32PG12B_emu_vmon_interrupt.ewd │ │ ├── EFM32PG12B_emu_vmon_interrupt.ewp │ │ ├── EFM32PG1B_emu_vmon_interrupt.ewd │ │ ├── EFM32PG1B_emu_vmon_interrupt.ewp │ │ ├── EFM32TG11B_emu_vmon_interrupt.ewd │ │ ├── EFM32TG11B_emu_vmon_interrupt.ewp │ │ ├── EFR32BG12P_emu_vmon_interrupt.ewd │ │ ├── EFR32BG12P_emu_vmon_interrupt.ewp │ │ ├── EFR32BG13P_emu_vmon_interrupt.ewd │ │ ├── EFR32BG13P_emu_vmon_interrupt.ewp │ │ ├── EFR32BG1P_emu_vmon_interrupt.ewd │ │ ├── EFR32BG1P_emu_vmon_interrupt.ewp │ │ ├── EFR32FG12P_emu_vmon_interrupt.ewd │ │ ├── EFR32FG12P_emu_vmon_interrupt.ewp │ │ ├── EFR32FG13P_emu_vmon_interrupt.ewd │ │ ├── EFR32FG13P_emu_vmon_interrupt.ewp │ │ ├── EFR32FG14P_emu_vmon_interrupt.ewd │ │ ├── EFR32FG14P_emu_vmon_interrupt.ewp │ │ ├── EFR32FG1P_emu_vmon_interrupt.ewd │ │ ├── EFR32FG1P_emu_vmon_interrupt.ewp │ │ ├── EFR32MG12P_emu_vmon_interrupt.ewd │ │ ├── EFR32MG12P_emu_vmon_interrupt.ewp │ │ ├── EFR32MG13P_emu_vmon_interrupt.ewd │ │ ├── EFR32MG13P_emu_vmon_interrupt.ewp │ │ ├── EFR32MG14P_emu_vmon_interrupt.ewd │ │ ├── EFR32MG14P_emu_vmon_interrupt.ewp │ │ ├── EFR32MG1P_emu_vmon_interrupt.ewd │ │ ├── EFR32MG1P_emu_vmon_interrupt.ewp │ │ └── emu_vmon_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── wdog │ └── wdog_led_toggle │ │ ├── SimplicityStudio │ │ ├── BRD4100A_EFR32BG1P_wdog.slsproj │ │ ├── BRD4103A_EFR32BG12P_wdog.slsproj │ │ ├── BRD4104A_EFR32BG13_wdog.slsproj │ │ ├── BRD4151A_EFR32MG1P_wdog.slsproj │ │ ├── BRD4159A_EFR32MG13_wdog.slsproj │ │ ├── BRD4161A_EFR32MG12P_wdog.slsproj │ │ ├── BRD4169B_EFR32MG14_wdog.slsproj │ │ ├── BRD4250A_EFR32FG1P_wdog.slsproj │ │ ├── BRD4253A_EFR32FG12P_wdog.slsproj │ │ ├── BRD4256A_EFR32FG13_wdog.slsproj │ │ ├── BRD4257A_EFR32FG14_wdog.slsproj │ │ ├── SLSTK3301A_EFM32TG11_wdog.slsproj │ │ ├── SLSTK3401A_EFM32PG1B_wdog.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wdog.slsproj │ │ └── SLSTK3701A_EFM32GG11_wdog.slsproj │ │ ├── doc │ │ ├── EFM32GG11_wdog.xml │ │ ├── EFM32PG12B_wdog.xml │ │ ├── EFM32PG1B_wdog.xml │ │ ├── EFM32TG11_wdog.xml │ │ ├── EFR32BG12P_wdog.xml │ │ ├── EFR32BG13_wdog.xml │ │ ├── EFR32BG1P_wdog.xml │ │ ├── EFR32FG12P_wdog.xml │ │ ├── EFR32FG13_wdog.xml │ │ ├── EFR32FG14_wdog.xml │ │ ├── EFR32FG1P_wdog.xml │ │ ├── EFR32MG12P_wdog.xml │ │ ├── EFR32MG13_wdog.xml │ │ ├── EFR32MG14_wdog.xml │ │ └── EFR32MG1P_wdog.xml │ │ ├── iar │ │ ├── EFM32GG11_wdog.ewd │ │ ├── EFM32GG11_wdog.ewp │ │ ├── EFM32PG12B_wdog.ewd │ │ ├── EFM32PG12B_wdog.ewp │ │ ├── EFM32PG1B_wdog.ewd │ │ ├── EFM32PG1B_wdog.ewp │ │ ├── EFM32TG11_wdog.ewd │ │ ├── EFM32TG11_wdog.ewp │ │ ├── EFR32BG12P_wdog.ewd │ │ ├── EFR32BG12P_wdog.ewp │ │ ├── EFR32BG13_wdog.ewd │ │ ├── EFR32BG13_wdog.ewp │ │ ├── EFR32BG1P_wdog.ewd │ │ ├── EFR32BG1P_wdog.ewp │ │ ├── EFR32FG12P_wdog.ewd │ │ ├── EFR32FG12P_wdog.ewp │ │ ├── EFR32FG13_wdog.ewd │ │ ├── EFR32FG13_wdog.ewp │ │ ├── EFR32FG14_wdog.ewd │ │ ├── EFR32FG14_wdog.ewp │ │ ├── EFR32FG1P_wdog.ewd │ │ ├── EFR32FG1P_wdog.ewp │ │ ├── EFR32MG12P_wdog.ewd │ │ ├── EFR32MG12P_wdog.ewp │ │ ├── EFR32MG13_wdog.ewd │ │ ├── EFR32MG13_wdog.ewp │ │ ├── EFR32MG14_wdog.ewd │ │ ├── EFR32MG14_wdog.ewp │ │ ├── EFR32MG1P_wdog.ewd │ │ ├── EFR32MG1P_wdog.ewp │ │ └── wdog_led_toggle.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_gg11.c └── wtimer │ ├── wtimer_dma_edge_capture │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_dma_edge_capture.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_dma_edge_capture.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_dma_edge_capture.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_dma_edge_capture.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_dma_edge_capture.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_dma_edge_capture.xml │ │ ├── EFM32PG12B_wtimer_dma_edge_capture.xml │ │ ├── EFM32TG11B_wtimer_dma_edge_capture.xml │ │ ├── EFR32BG12P_wtimer_dma_edge_capture.xml │ │ ├── EFR32BG13P_wtimer_dma_edge_capture.xml │ │ ├── EFR32FG12P_wtimer_dma_edge_capture.xml │ │ ├── EFR32FG13P_wtimer_dma_edge_capture.xml │ │ ├── EFR32FG14P_wtimer_dma_edge_capture.xml │ │ ├── EFR32MG12P_wtimer_dma_edge_capture.xml │ │ ├── EFR32MG13P_wtimer_dma_edge_capture.xml │ │ └── EFR32MG14P_wtimer_dma_edge_capture.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_dma_edge_capture.ewd │ │ ├── EFM32GG11B_wtimer_dma_edge_capture.ewp │ │ ├── EFM32PG12B_wtimer_dma_edge_capture.ewd │ │ ├── EFM32PG12B_wtimer_dma_edge_capture.ewp │ │ ├── EFM32TG11B_wtimer_dma_edge_capture.ewd │ │ ├── EFM32TG11B_wtimer_dma_edge_capture.ewp │ │ ├── EFR32BG12P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32BG12P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32BG13P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32BG13P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32FG12P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32FG12P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32FG13P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32FG13P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32FG14P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32FG14P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32MG12P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32MG12P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32MG13P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32MG13P_wtimer_dma_edge_capture.ewp │ │ ├── EFR32MG14P_wtimer_dma_edge_capture.ewd │ │ ├── EFR32MG14P_wtimer_dma_edge_capture.ewp │ │ └── wtimer_dma_edge_capture.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_frequency_generation │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_frequency_generation.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_frequency_generation.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_frequency_generation.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_frequency_generation.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_frequency_generation.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_frequency_generation.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_frequency_generation.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_frequency_generation.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_frequency_generation.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_frequency_generation.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_frequency_generation.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_frequency_generation.xml │ │ ├── EFM32PG12B_wtimer_frequency_generation.xml │ │ ├── EFM32TG11B_wtimer_frequency_generation.xml │ │ ├── EFR32BG12P_wtimer_frequency_generation.xml │ │ ├── EFR32BG13P_wtimer_frequency_generation.xml │ │ ├── EFR32FG12P_wtimer_frequency_generation.xml │ │ ├── EFR32FG13P_wtimer_frequency_generation.xml │ │ ├── EFR32FG14P_wtimer_frequency_generation.xml │ │ ├── EFR32MG12P_wtimer_frequency_generation.xml │ │ ├── EFR32MG13P_wtimer_frequency_generation.xml │ │ └── EFR32MG14P_wtimer_frequency_generation.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_frequency_generation.ewd │ │ ├── EFM32GG11B_wtimer_frequency_generation.ewp │ │ ├── EFM32PG12B_wtimer_frequency_generation.ewd │ │ ├── EFM32PG12B_wtimer_frequency_generation.ewp │ │ ├── EFM32TG11B_wtimer_frequency_generation.ewd │ │ ├── EFM32TG11B_wtimer_frequency_generation.ewp │ │ ├── EFR32BG12P_wtimer_frequency_generation.ewd │ │ ├── EFR32BG12P_wtimer_frequency_generation.ewp │ │ ├── EFR32BG13P_wtimer_frequency_generation.ewd │ │ ├── EFR32BG13P_wtimer_frequency_generation.ewp │ │ ├── EFR32FG12P_wtimer_frequency_generation.ewd │ │ ├── EFR32FG12P_wtimer_frequency_generation.ewp │ │ ├── EFR32FG13P_wtimer_frequency_generation.ewd │ │ ├── EFR32FG13P_wtimer_frequency_generation.ewp │ │ ├── EFR32FG14P_wtimer_frequency_generation.ewd │ │ ├── EFR32FG14P_wtimer_frequency_generation.ewp │ │ ├── EFR32MG12P_wtimer_frequency_generation.ewd │ │ ├── EFR32MG12P_wtimer_frequency_generation.ewp │ │ ├── EFR32MG13P_wtimer_frequency_generation.ewd │ │ ├── EFR32MG13P_wtimer_frequency_generation.ewp │ │ ├── EFR32MG14P_wtimer_frequency_generation.ewd │ │ ├── EFR32MG14P_wtimer_frequency_generation.ewp │ │ └── wtimer_frequency_generation.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_input_capture_interrupt │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_input_capture_interrupt.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_input_capture_interrupt.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_input_capture_interrupt.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_input_capture_interrupt.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_input_capture_interrupt.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_input_capture_interrupt.xml │ │ ├── EFM32PG12B_wtimer_input_capture_interrupt.xml │ │ ├── EFM32TG11B_wtimer_input_capture_interrupt.xml │ │ ├── EFR32BG12P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32BG13P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32FG12P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32FG13P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32FG14P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32MG12P_wtimer_input_capture_interrupt.xml │ │ ├── EFR32MG13P_wtimer_input_capture_interrupt.xml │ │ └── EFR32MG14P_wtimer_input_capture_interrupt.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_input_capture_interrupt.ewd │ │ ├── EFM32GG11B_wtimer_input_capture_interrupt.ewp │ │ ├── EFM32PG12B_wtimer_input_capture_interrupt.ewd │ │ ├── EFM32PG12B_wtimer_input_capture_interrupt.ewp │ │ ├── EFM32TG11B_wtimer_input_capture_interrupt.ewd │ │ ├── EFM32TG11B_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32BG12P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32BG12P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32BG13P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32BG13P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32FG12P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32FG12P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32FG13P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32FG13P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32FG14P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32FG14P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32MG12P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32MG12P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32MG13P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32MG13P_wtimer_input_capture_interrupt.ewp │ │ ├── EFR32MG14P_wtimer_input_capture_interrupt.ewd │ │ ├── EFR32MG14P_wtimer_input_capture_interrupt.ewp │ │ └── wtimer_input_capture_interrupt.eww │ ├── readme.txt │ └── src │ │ └── main.c │ ├── wtimer_input_capture_polled │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_input_capture_polled.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_input_capture_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_input_capture_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_input_capture_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_input_capture_polled.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_input_capture_polled.xml │ │ ├── EFM32PG12B_wtimer_input_capture_polled.xml │ │ ├── EFM32TG11B_wtimer_input_capture_polled.xml │ │ ├── EFR32BG12P_wtimer_input_capture_polled.xml │ │ ├── EFR32BG13P_wtimer_input_capture_polled.xml │ │ ├── EFR32FG12P_wtimer_input_capture_polled.xml │ │ ├── EFR32FG13P_wtimer_input_capture_polled.xml │ │ ├── EFR32FG14P_wtimer_input_capture_polled.xml │ │ ├── EFR32MG12P_wtimer_input_capture_polled.xml │ │ ├── EFR32MG13P_wtimer_input_capture_polled.xml │ │ └── EFR32MG14P_wtimer_input_capture_polled.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_input_capture_polled.ewd │ │ ├── EFM32GG11B_wtimer_input_capture_polled.ewp │ │ ├── EFM32PG12B_wtimer_input_capture_polled.ewd │ │ ├── EFM32PG12B_wtimer_input_capture_polled.ewp │ │ ├── EFM32TG11B_wtimer_input_capture_polled.ewd │ │ ├── EFM32TG11B_wtimer_input_capture_polled.ewp │ │ ├── EFR32BG12P_wtimer_input_capture_polled.ewd │ │ ├── EFR32BG12P_wtimer_input_capture_polled.ewp │ │ ├── EFR32BG13P_wtimer_input_capture_polled.ewd │ │ ├── EFR32BG13P_wtimer_input_capture_polled.ewp │ │ ├── EFR32FG12P_wtimer_input_capture_polled.ewd │ │ ├── EFR32FG12P_wtimer_input_capture_polled.ewp │ │ ├── EFR32FG13P_wtimer_input_capture_polled.ewd │ │ ├── EFR32FG13P_wtimer_input_capture_polled.ewp │ │ ├── EFR32FG14P_wtimer_input_capture_polled.ewd │ │ ├── EFR32FG14P_wtimer_input_capture_polled.ewp │ │ ├── EFR32MG12P_wtimer_input_capture_polled.ewd │ │ ├── EFR32MG12P_wtimer_input_capture_polled.ewp │ │ ├── EFR32MG13P_wtimer_input_capture_polled.ewd │ │ ├── EFR32MG13P_wtimer_input_capture_polled.ewp │ │ ├── EFR32MG14P_wtimer_input_capture_polled.ewd │ │ ├── EFR32MG14P_wtimer_input_capture_polled.ewp │ │ └── wtimer_input_capture_polled.eww │ ├── readme.txt │ └── src │ │ └── main.c │ ├── wtimer_period_measurement_interrupt │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_period_measurement_interrupt.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_period_measurement_interrupt.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_period_measurement_interrupt.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_period_measurement_interrupt.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_period_measurement_interrupt.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_period_measurement_interrupt.xml │ │ ├── EFM32PG12B_wtimer_period_measurement_interrupt.xml │ │ ├── EFM32TG11B_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32BG12P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32BG13P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32FG12P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32FG13P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32FG14P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32MG12P_wtimer_period_measurement_interrupt.xml │ │ ├── EFR32MG13P_wtimer_period_measurement_interrupt.xml │ │ └── EFR32MG14P_wtimer_period_measurement_interrupt.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_period_measurement_interrupt.ewd │ │ ├── EFM32GG11B_wtimer_period_measurement_interrupt.ewp │ │ ├── EFM32PG12B_wtimer_period_measurement_interrupt.ewd │ │ ├── EFM32PG12B_wtimer_period_measurement_interrupt.ewp │ │ ├── EFM32TG11B_wtimer_period_measurement_interrupt.ewd │ │ ├── EFM32TG11B_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32BG12P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32BG12P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32BG13P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32BG13P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32FG12P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32FG12P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32FG13P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32FG13P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32FG14P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32FG14P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32MG12P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32MG12P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32MG13P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32MG13P_wtimer_period_measurement_interrupt.ewp │ │ ├── EFR32MG14P_wtimer_period_measurement_interrupt.ewd │ │ ├── EFR32MG14P_wtimer_period_measurement_interrupt.ewp │ │ └── wtimer_period_measurement_interrupt.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_period_measurement_polled │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_period_measurement_polled.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_period_measurement_polled.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_period_measurement_polled.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_period_measurement_polled.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_period_measurement_polled.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_period_measurement_polled.xml │ │ ├── EFM32PG12B_wtimer_period_measurement_polled.xml │ │ ├── EFM32TG11B_wtimer_period_measurement_polled.xml │ │ ├── EFR32BG12P_wtimer_period_measurement_polled.xml │ │ ├── EFR32BG13P_wtimer_period_measurement_polled.xml │ │ ├── EFR32FG12P_wtimer_period_measurement_polled.xml │ │ ├── EFR32FG13P_wtimer_period_measurement_polled.xml │ │ ├── EFR32FG14P_wtimer_period_measurement_polled.xml │ │ ├── EFR32MG12P_wtimer_period_measurement_polled.xml │ │ ├── EFR32MG13P_wtimer_period_measurement_polled.xml │ │ └── EFR32MG14P_wtimer_period_measurement_polled.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_period_measurement_polled.ewd │ │ ├── EFM32GG11B_wtimer_period_measurement_polled.ewp │ │ ├── EFM32PG12B_wtimer_period_measurement_polled.ewd │ │ ├── EFM32PG12B_wtimer_period_measurement_polled.ewp │ │ ├── EFM32TG11B_wtimer_period_measurement_polled.ewd │ │ ├── EFM32TG11B_wtimer_period_measurement_polled.ewp │ │ ├── EFR32BG12P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32BG12P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32BG13P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32BG13P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32FG12P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32FG12P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32FG13P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32FG13P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32FG14P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32FG14P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32MG12P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32MG12P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32MG13P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32MG13P_wtimer_period_measurement_polled.ewp │ │ ├── EFR32MG14P_wtimer_period_measurement_polled.ewd │ │ ├── EFR32MG14P_wtimer_period_measurement_polled.ewp │ │ └── wtimer_period_measurement_polled.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_pulse_capture │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_pulse_capture.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_pulse_capture.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_pulse_capture.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_pulse_capture.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_pulse_capture.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_pulse_capture.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_pulse_capture.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_pulse_capture.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_pulse_capture.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_pulse_capture.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_pulse_capture.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_pulse_capture.xml │ │ ├── EFM32PG12B_wtimer_pulse_capture.xml │ │ ├── EFM32TG11B_wtimer_pulse_capture.xml │ │ ├── EFR32BG12P_wtimer_pulse_capture.xml │ │ ├── EFR32BG13P_wtimer_pulse_capture.xml │ │ ├── EFR32FG12P_wtimer_pulse_capture.xml │ │ ├── EFR32FG13P_wtimer_pulse_capture.xml │ │ ├── EFR32FG14P_wtimer_pulse_capture.xml │ │ ├── EFR32MG12P_wtimer_pulse_capture.xml │ │ ├── EFR32MG13P_wtimer_pulse_capture.xml │ │ └── EFR32MG14P_wtimer_pulse_capture.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_pulse_capture.ewd │ │ ├── EFM32GG11B_wtimer_pulse_capture.ewp │ │ ├── EFM32PG12B_wtimer_pulse_capture.ewd │ │ ├── EFM32PG12B_wtimer_pulse_capture.ewp │ │ ├── EFM32TG11B_wtimer_pulse_capture.ewd │ │ ├── EFM32TG11B_wtimer_pulse_capture.ewp │ │ ├── EFR32BG12P_wtimer_pulse_capture.ewd │ │ ├── EFR32BG12P_wtimer_pulse_capture.ewp │ │ ├── EFR32BG13P_wtimer_pulse_capture.ewd │ │ ├── EFR32BG13P_wtimer_pulse_capture.ewp │ │ ├── EFR32FG12P_wtimer_pulse_capture.ewd │ │ ├── EFR32FG12P_wtimer_pulse_capture.ewp │ │ ├── EFR32FG13P_wtimer_pulse_capture.ewd │ │ ├── EFR32FG13P_wtimer_pulse_capture.ewp │ │ ├── EFR32FG14P_wtimer_pulse_capture.ewd │ │ ├── EFR32FG14P_wtimer_pulse_capture.ewp │ │ ├── EFR32MG12P_wtimer_pulse_capture.ewd │ │ ├── EFR32MG12P_wtimer_pulse_capture.ewp │ │ ├── EFR32MG13P_wtimer_pulse_capture.ewd │ │ ├── EFR32MG13P_wtimer_pulse_capture.ewp │ │ ├── EFR32MG14P_wtimer_pulse_capture.ewd │ │ ├── EFR32MG14P_wtimer_pulse_capture.ewp │ │ └── wtimer_pulse_capture.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_pwm_dma │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_pwm_dma.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_pwm_dma.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_pwm_dma.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_pwm_dma.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_pwm_dma.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_pwm_dma.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_pwm_dma.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_pwm_dma.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_pwm_dma.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_pwm_dma.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_pwm_dma.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_pwm_dma.xml │ │ ├── EFM32PG12B_wtimer_pwm_dma.xml │ │ ├── EFM32TG11B_wtimer_pwm_dma.xml │ │ ├── EFR32BG12P_wtimer_pwm_dma.xml │ │ ├── EFR32BG13P_wtimer_pwm_dma.xml │ │ ├── EFR32FG12P_wtimer_pwm_dma.xml │ │ ├── EFR32FG13P_wtimer_pwm_dma.xml │ │ ├── EFR32FG14P_wtimer_pwm_dma.xml │ │ ├── EFR32MG12P_wtimer_pwm_dma.xml │ │ ├── EFR32MG13P_wtimer_pwm_dma.xml │ │ └── EFR32MG14P_wtimer_pwm_dma.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_pwm_dma.ewd │ │ ├── EFM32GG11B_wtimer_pwm_dma.ewp │ │ ├── EFM32PG12B_wtimer_pwm_dma.ewd │ │ ├── EFM32PG12B_wtimer_pwm_dma.ewp │ │ ├── EFM32TG11B_wtimer_pwm_dma.ewd │ │ ├── EFM32TG11B_wtimer_pwm_dma.ewp │ │ ├── EFR32BG12P_wtimer_pwm_dma.ewd │ │ ├── EFR32BG12P_wtimer_pwm_dma.ewp │ │ ├── EFR32BG13P_wtimer_pwm_dma.ewd │ │ ├── EFR32BG13P_wtimer_pwm_dma.ewp │ │ ├── EFR32FG12P_wtimer_pwm_dma.ewd │ │ ├── EFR32FG12P_wtimer_pwm_dma.ewp │ │ ├── EFR32FG13P_wtimer_pwm_dma.ewd │ │ ├── EFR32FG13P_wtimer_pwm_dma.ewp │ │ ├── EFR32FG14P_wtimer_pwm_dma.ewd │ │ ├── EFR32FG14P_wtimer_pwm_dma.ewp │ │ ├── EFR32MG12P_wtimer_pwm_dma.ewd │ │ ├── EFR32MG12P_wtimer_pwm_dma.ewp │ │ ├── EFR32MG13P_wtimer_pwm_dma.ewd │ │ ├── EFR32MG13P_wtimer_pwm_dma.ewp │ │ ├── EFR32MG14P_wtimer_pwm_dma.ewd │ │ ├── EFR32MG14P_wtimer_pwm_dma.ewp │ │ └── wtimer_pwm_dma.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_pwm_interrupt │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_pwm_interrupt.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_pwm_interrupt.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_pwm_interrupt.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_pwm_interrupt.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_pwm_interrupt.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_pwm_interrupt.xml │ │ ├── EFM32PG12B_wtimer_pwm_interrupt.xml │ │ ├── EFM32TG11B_wtimer_pwm_interrupt.xml │ │ ├── EFR32BG12P_wtimer_pwm_interrupt.xml │ │ ├── EFR32BG13P_wtimer_pwm_interrupt.xml │ │ ├── EFR32FG12P_wtimer_pwm_interrupt.xml │ │ ├── EFR32FG13P_wtimer_pwm_interrupt.xml │ │ ├── EFR32FG14P_wtimer_pwm_interrupt.xml │ │ ├── EFR32MG12P_wtimer_pwm_interrupt.xml │ │ ├── EFR32MG13P_wtimer_pwm_interrupt.xml │ │ └── EFR32MG14P_wtimer_pwm_interrupt.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_pwm_interrupt.ewd │ │ ├── EFM32GG11B_wtimer_pwm_interrupt.ewp │ │ ├── EFM32PG12B_wtimer_pwm_interrupt.ewd │ │ ├── EFM32PG12B_wtimer_pwm_interrupt.ewp │ │ ├── EFM32TG11B_wtimer_pwm_interrupt.ewd │ │ ├── EFM32TG11B_wtimer_pwm_interrupt.ewp │ │ ├── EFR32BG12P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32BG12P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32BG13P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32BG13P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32FG12P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32FG12P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32FG13P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32FG13P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32FG14P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32FG14P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32MG12P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32MG12P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32MG13P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32MG13P_wtimer_pwm_interrupt.ewp │ │ ├── EFR32MG14P_wtimer_pwm_interrupt.ewd │ │ ├── EFR32MG14P_wtimer_pwm_interrupt.ewp │ │ └── wtimer_pwm_interrupt.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_single_edge_output_compare │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_single_edge_output_compare.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_single_edge_output_compare.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_single_edge_output_compare.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_single_edge_output_compare.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_single_edge_output_compare.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_single_edge_output_compare.xml │ │ ├── EFM32PG12B_wtimer_single_edge_output_compare.xml │ │ ├── EFM32TG11B_wtimer_single_edge_output_compare.xml │ │ ├── EFR32BG12P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32BG13P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32FG12P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32FG13P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32FG14P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32MG12P_wtimer_single_edge_output_compare.xml │ │ ├── EFR32MG13P_wtimer_single_edge_output_compare.xml │ │ └── EFR32MG14P_wtimer_single_edge_output_compare.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_single_edge_output_compare.ewd │ │ ├── EFM32GG11B_wtimer_single_edge_output_compare.ewp │ │ ├── EFM32PG12B_wtimer_single_edge_output_compare.ewd │ │ ├── EFM32PG12B_wtimer_single_edge_output_compare.ewp │ │ ├── EFM32TG11B_wtimer_single_edge_output_compare.ewd │ │ ├── EFM32TG11B_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32BG12P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32BG12P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32BG13P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32BG13P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32FG12P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32FG12P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32FG13P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32FG13P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32FG14P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32FG14P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32MG12P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32MG12P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32MG13P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32MG13P_wtimer_single_edge_output_compare.ewp │ │ ├── EFR32MG14P_wtimer_single_edge_output_compare.ewd │ │ ├── EFR32MG14P_wtimer_single_edge_output_compare.ewp │ │ └── wtimer_single_edge_output_compare.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_single_pulse_generation_dma │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_single_pulse_generation_dma.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_single_pulse_generation_dma.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_single_pulse_generation_dma.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_single_pulse_generation_dma.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_dma.xml │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_dma.xml │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_dma.xml │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_dma.xml │ │ └── EFR32MG14P_wtimer_single_pulse_generation_dma.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_dma.ewp │ │ ├── EFR32MG14P_wtimer_single_pulse_generation_dma.ewd │ │ ├── EFR32MG14P_wtimer_single_pulse_generation_dma.ewp │ │ └── wtimer_single_pulse_generation_dma.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ ├── wtimer_single_pulse_generation_interrupt │ ├── SimplicityStudio │ │ ├── BRD4103A_EFR32BG12P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4104A_EFR32BG13P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4159A_EFR32MG13P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4161A_EFR32MG12P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4169B_EFR32MG14P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4253A_EFR32FG12P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4256A_EFR32FG13P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── BRD4257A_EFR32FG14P_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── SLSTK3301A_EFM32TG11B_wtimer_single_pulse_generation_interrupt.slsproj │ │ ├── SLSTK3402A_EFM32PG12B_wtimer_single_pulse_generation_interrupt.slsproj │ │ └── SLSTK3701A_EFM32GG11B_wtimer_single_pulse_generation_interrupt.slsproj │ ├── doc │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_interrupt.xml │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_interrupt.xml │ │ └── EFR32MG14P_wtimer_single_pulse_generation_interrupt.xml │ ├── iar │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFM32GG11B_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFM32PG12B_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFM32TG11B_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32BG12P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32BG13P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32FG12P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32FG13P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32FG14P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32MG12P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32MG13P_wtimer_single_pulse_generation_interrupt.ewp │ │ ├── EFR32MG14P_wtimer_single_pulse_generation_interrupt.ewd │ │ ├── EFR32MG14P_wtimer_single_pulse_generation_interrupt.ewp │ │ └── wtimer_single_pulse_generation_interrupt.eww │ ├── readme.txt │ └── src │ │ ├── main_gg11_tg11.c │ │ └── main_s1.c │ └── wtimer_single_pulse_generation_polled │ ├── SimplicityStudio │ ├── BRD4103A_EFR32BG12P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4104A_EFR32BG13P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4159A_EFR32MG13P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4161A_EFR32MG12P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4169B_EFR32MG14P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4253A_EFR32FG12P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4256A_EFR32FG13P_wtimer_single_pulse_generation_polled.slsproj │ ├── BRD4257A_EFR32FG14P_wtimer_single_pulse_generation_polled.slsproj │ ├── SLSTK3301A_EFM32TG11B_wtimer_single_pulse_generation_polled.slsproj │ ├── SLSTK3402A_EFM32PG12B_wtimer_single_pulse_generation_polled.slsproj │ └── SLSTK3701A_EFM32GG11B_wtimer_single_pulse_generation_polled.slsproj │ ├── doc │ ├── EFM32GG11B_wtimer_single_pulse_generation_polled.xml │ ├── EFM32PG12B_wtimer_single_pulse_generation_polled.xml │ ├── EFM32TG11B_wtimer_single_pulse_generation_polled.xml │ ├── EFR32BG12P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32BG13P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32FG12P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32FG13P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32FG14P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32MG12P_wtimer_single_pulse_generation_polled.xml │ ├── EFR32MG13P_wtimer_single_pulse_generation_polled.xml │ └── EFR32MG14P_wtimer_single_pulse_generation_polled.xml │ ├── iar │ ├── EFM32GG11B_wtimer_single_pulse_generation_polled.ewd │ ├── EFM32GG11B_wtimer_single_pulse_generation_polled.ewp │ ├── EFM32PG12B_wtimer_single_pulse_generation_polled.ewd │ ├── EFM32PG12B_wtimer_single_pulse_generation_polled.ewp │ ├── EFM32TG11B_wtimer_single_pulse_generation_polled.ewd │ ├── EFM32TG11B_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32BG12P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32BG12P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32BG13P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32BG13P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32FG12P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32FG12P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32FG13P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32FG13P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32FG14P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32FG14P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32MG12P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32MG12P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32MG13P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32MG13P_wtimer_single_pulse_generation_polled.ewp │ ├── EFR32MG14P_wtimer_single_pulse_generation_polled.ewd │ ├── EFR32MG14P_wtimer_single_pulse_generation_polled.ewp │ └── wtimer_single_pulse_generation_polled.eww │ ├── readme.txt │ └── src │ ├── main_gg11_tg11.c │ └── main_s1.c ├── series2 ├── acmp │ ├── acmp_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_acmp_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_acmp_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_acmp_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_acmp_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_acmp_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_acmp_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_acmp_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_acmp_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_acmp_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_acmp_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_acmp_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_acmp_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_acmp_interrupt.ewd │ │ │ ├── EFR32FG25_acmp_interrupt.ewp │ │ │ ├── EFR32MG21_acmp_interrupt.ewd │ │ │ ├── EFR32MG21_acmp_interrupt.ewp │ │ │ ├── EFR32MG24_acmp_interrupt.ewd │ │ │ ├── EFR32MG24_acmp_interrupt.ewp │ │ │ ├── EFR32MG27_acmp_interrupt.ewd │ │ │ ├── EFR32MG27_acmp_interrupt.ewp │ │ │ ├── EFR32ZG23_acmp_interrupt.ewd │ │ │ ├── EFR32ZG23_acmp_interrupt.ewp │ │ │ ├── EFR32ZG28_acmp_interrupt.ewd │ │ │ ├── EFR32ZG28_acmp_interrupt.ewp │ │ │ └── acmp_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg21.c │ ├── acmp_pin_output │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_acmp_pin_output.slsproj │ │ │ ├── BRD4186C_EFR32MG24_acmp_pin_output.slsproj │ │ │ ├── BRD4194A_EFR32MG27_acmp_pin_output.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_acmp_pin_output.slsproj │ │ │ ├── BRD4270B_EFR32FG25_acmp_pin_output.slsproj │ │ │ └── BRD4400C_EFR32ZG28_acmp_pin_output.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_acmp_pin_output.xml │ │ │ ├── EFR32MG21_BRD4181A_acmp_pin_output.xml │ │ │ ├── EFR32MG24_BRD4186C_acmp_pin_output.xml │ │ │ ├── EFR32MG27_BRD4194A_acmp_pin_output.xml │ │ │ ├── EFR32ZG23_BRD4204D_acmp_pin_output.xml │ │ │ └── EFR32ZG28_BRD4400C_acmp_pin_output.xml │ │ ├── iar │ │ │ ├── EFR32FG25_acmp_pin_output.ewd │ │ │ ├── EFR32FG25_acmp_pin_output.ewp │ │ │ ├── EFR32MG21_acmp_pin_output.ewd │ │ │ ├── EFR32MG21_acmp_pin_output.ewp │ │ │ ├── EFR32MG24_acmp_pin_output.ewd │ │ │ ├── EFR32MG24_acmp_pin_output.ewp │ │ │ ├── EFR32MG27_acmp_pin_output.ewd │ │ │ ├── EFR32MG27_acmp_pin_output.ewp │ │ │ ├── EFR32ZG23_acmp_pin_output.ewd │ │ │ ├── EFR32ZG23_acmp_pin_output.ewp │ │ │ ├── EFR32ZG28_acmp_pin_output.ewd │ │ │ ├── EFR32ZG28_acmp_pin_output.ewp │ │ │ └── acmp_pin_output.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg21.c │ ├── acmp_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_acmp_polled.slsproj │ │ │ ├── BRD4186C_EFR32MG24_acmp_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_acmp_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_acmp_polled.slsproj │ │ │ ├── BRD4270B_EFR32FG25_acmp_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_acmp_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_acmp_polled.xml │ │ │ ├── EFR32MG21_BRD4181A_acmp_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_acmp_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_acmp_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_acmp_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_acmp_polled.xml │ │ ├── iar │ │ │ ├── EFR32FG25_acmp_polled.ewd │ │ │ ├── EFR32FG25_acmp_polled.ewp │ │ │ ├── EFR32MG21_acmp_polled.ewd │ │ │ ├── EFR32MG21_acmp_polled.ewp │ │ │ ├── EFR32MG24_acmp_polled.ewd │ │ │ ├── EFR32MG24_acmp_polled.ewp │ │ │ ├── EFR32MG27_acmp_polled.ewd │ │ │ ├── EFR32MG27_acmp_polled.ewp │ │ │ ├── EFR32ZG23_acmp_polled.ewd │ │ │ ├── EFR32ZG23_acmp_polled.ewp │ │ │ ├── EFR32ZG28_acmp_polled.ewd │ │ │ ├── EFR32ZG28_acmp_polled.ewp │ │ │ └── acmp_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg21.c │ └── acmp_vmon │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_acmp_vmon.slsproj │ │ ├── BRD4186C_EFR32MG24_acmp_vmon.slsproj │ │ ├── BRD4194A_EFR32MG27_acmp_vmon.slsproj │ │ ├── BRD4204D_EFR32ZG23_acmp_vmon.slsproj │ │ ├── BRD4270B_EFR32FG25_acmp_vmon.slsproj │ │ └── BRD4400C_EFR32ZG28_acmp_vmon.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_acmp_vmon.xml │ │ ├── EFR32MG21_BRD4181A_acmp_vmon.xml │ │ ├── EFR32MG24_BRD4186C_acmp_vmon.xml │ │ ├── EFR32MG27_BRD4194A_acmp_vmon.xml │ │ ├── EFR32ZG23_BRD4204D_acmp_vmon.xml │ │ └── EFR32ZG28_BRD4400C_acmp_vmon.xml │ │ ├── iar │ │ ├── EFR32FG25_acmp_vmon.ewd │ │ ├── EFR32FG25_acmp_vmon.ewp │ │ ├── EFR32MG21_acmp_vmon.ewd │ │ ├── EFR32MG21_acmp_vmon.ewp │ │ ├── EFR32MG24_acmp_vmon.ewd │ │ ├── EFR32MG24_acmp_vmon.ewp │ │ ├── EFR32MG27_acmp_vmon.ewd │ │ ├── EFR32MG27_acmp_vmon.ewp │ │ ├── EFR32ZG23_acmp_vmon.ewd │ │ ├── EFR32ZG23_acmp_vmon.ewp │ │ ├── EFR32ZG28_acmp_vmon.ewd │ │ ├── EFR32ZG28_acmp_vmon.ewp │ │ └── acmp_vmon.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg27.c ├── burtc │ └── burtc_em4_buram │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_burtc_em4_buram.slsproj │ │ ├── BRD4182A_EFR32MG22_burtc_em4_buram.slsproj │ │ ├── BRD4186C_EFR32MG24_burtc_em4_buram.slsproj │ │ ├── BRD4194A_EFR32MG27_burtc_em4_buram.slsproj │ │ ├── BRD4204D_EFR32ZG23_burtc_em4_buram.slsproj │ │ ├── BRD4270B_EFR32FG25_burtc_em4_buram.slsproj │ │ └── BRD4400C_EFR32ZG28_burtc_em4_buram.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_burtc_em4_buram.xml │ │ ├── EFR32MG21_BRD4181A_burtc_em4_buram.xml │ │ ├── EFR32MG22_BRD4182A_burtc_em4_buram.xml │ │ ├── EFR32MG24_BRD4186C_burtc_em4_buram.xml │ │ ├── EFR32MG27_BRD4194A_burtc_em4_buram.xml │ │ ├── EFR32ZG23_BRD4204D_burtc_em4_buram.xml │ │ └── EFR32ZG28_BRD4400C_burtc_em4_buram.xml │ │ ├── iar │ │ ├── EFR32FG25_burtc_em4_buram.ewd │ │ ├── EFR32FG25_burtc_em4_buram.ewp │ │ ├── EFR32MG21_burtc_em4_buram.ewd │ │ ├── EFR32MG21_burtc_em4_buram.ewp │ │ ├── EFR32MG22_burtc_em4_buram.ewd │ │ ├── EFR32MG22_burtc_em4_buram.ewp │ │ ├── EFR32MG24_burtc_em4_buram.ewd │ │ ├── EFR32MG24_burtc_em4_buram.ewp │ │ ├── EFR32MG27_burtc_em4_buram.ewd │ │ ├── EFR32MG27_burtc_em4_buram.ewp │ │ ├── EFR32ZG23_burtc_em4_buram.ewd │ │ ├── EFR32ZG23_burtc_em4_buram.ewp │ │ ├── EFR32ZG28_burtc_em4_buram.ewd │ │ ├── EFR32ZG28_burtc_em4_buram.ewp │ │ └── burtc_em4_buram.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_xg21.c │ │ ├── main_xg27.c │ │ └── main_xg2x.c ├── cmu │ ├── lfrco_cal_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4181A_EFR32MG21_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_lfrco_cal_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_lfrco_cal_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_lfrco_cal_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_lfrco_cal_interrupt.xml │ │ │ ├── EFR32MG21_BRD4180A_lfrco_cal_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_lfrco_cal_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_lfrco_cal_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_lfrco_cal_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32FG25_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32MG21_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32MG21_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32ZG23_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32ZG23_lfrco_cal_interrupt.ewp │ │ │ ├── EFR32ZG28_lfrco_cal_interrupt.ewd │ │ │ ├── EFR32ZG28_lfrco_cal_interrupt.ewp │ │ │ └── lfrco_cal_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ └── lfrco_cal_polled │ │ ├── SimplicityStudio │ │ ├── BRD4180A_EFR32MG21_lfrco_cal_polled.slsproj │ │ ├── BRD4181A_EFR32MG21_lfrco_cal_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_lfrco_cal_polled.slsproj │ │ ├── BRD4270B_EFR32FG25_lfrco_cal_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_lfrco_cal_polled.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_lfrco_cal_polled.xml │ │ ├── EFR32MG21_BRD4180A_lfrco_cal_polled.xml │ │ ├── EFR32MG21_BRD4181A_lfrco_cal_polled.xml │ │ ├── EFR32ZG23_BRD4204D_lfrco_cal_polled.xml │ │ └── EFR32ZG28_BRD4400C_lfrco_cal_polled.xml │ │ ├── iar │ │ ├── EFR32FG25_lfrco_cal_polled.ewd │ │ ├── EFR32FG25_lfrco_cal_polled.ewp │ │ ├── EFR32MG21_lfrco_cal_polled.ewd │ │ ├── EFR32MG21_lfrco_cal_polled.ewp │ │ ├── EFR32ZG23_lfrco_cal_polled.ewd │ │ ├── EFR32ZG23_lfrco_cal_polled.ewp │ │ ├── EFR32ZG28_lfrco_cal_polled.ewd │ │ ├── EFR32ZG28_lfrco_cal_polled.ewp │ │ └── lfrco_cal_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg28.c ├── emu │ ├── dcdc_vmon │ │ ├── SimplicityStudio │ │ │ ├── BRD4182A_EFR32MG22_dcdc_vmon.slsproj │ │ │ ├── BRD4186C_EFR32MG24_dcdc_vmon.slsproj │ │ │ ├── BRD4194A_EFR32MG27_dcdc_vmon.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_dcdc_vmon.slsproj │ │ │ ├── BRD4270B_EFR32FG25_dcdc_vmon.slsproj │ │ │ └── BRD4400C_EFR32ZG28_dcdc_vmon.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_dcdc_vmon.xml │ │ │ ├── EFR32MG22_BRD4182A_dcdc_vmon.xml │ │ │ ├── EFR32MG24_BRD4186C_dcdc_vmon.xml │ │ │ ├── EFR32MG27_BRD4194A_dcdc_vmon.xml │ │ │ ├── EFR32ZG23_BRD4204D_dcdc_vmon.xml │ │ │ └── EFR32ZG28_BRD4400C_dcdc_vmon.xml │ │ ├── iar │ │ │ ├── EFR32FG25_dcdc_vmon.ewd │ │ │ ├── EFR32FG25_dcdc_vmon.ewp │ │ │ ├── EFR32MG22_dcdc_vmon.ewd │ │ │ ├── EFR32MG22_dcdc_vmon.ewp │ │ │ ├── EFR32MG24_dcdc_vmon.ewd │ │ │ ├── EFR32MG24_dcdc_vmon.ewp │ │ │ ├── EFR32MG27_dcdc_vmon.ewd │ │ │ ├── EFR32MG27_dcdc_vmon.ewp │ │ │ ├── EFR32ZG23_dcdc_vmon.ewd │ │ │ ├── EFR32ZG23_dcdc_vmon.ewp │ │ │ ├── EFR32ZG28_dcdc_vmon.ewd │ │ │ ├── EFR32ZG28_dcdc_vmon.ewp │ │ │ └── dcdc_vmon.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── em01_voltage_scaling │ │ ├── SimplicityStudio │ │ │ ├── BRD4182A_EFR32MG22_em01_voltage_scaling.slsproj │ │ │ ├── BRD4186C_EFR32MG24_em01_voltage_scaling.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em01_voltage_scaling.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em01_voltage_scaling.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em01_voltage_scaling.slsproj │ │ ├── doc │ │ │ ├── EFR32MG22_BRD4182A_em01_voltage_scaling.xml │ │ │ ├── EFR32MG24_BRD4186C_em01_voltage_scaling.xml │ │ │ ├── EFR32MG27_BRD4194A_em01_voltage_scaling.xml │ │ │ ├── EFR32ZG23_BRD4204D_em01_voltage_scaling.xml │ │ │ └── EFR32ZG28_BRD4400C_em01_voltage_scaling.xml │ │ ├── iar │ │ │ ├── EFR32MG22_em01_voltage_scaling.ewd │ │ │ ├── EFR32MG22_em01_voltage_scaling.ewp │ │ │ ├── EFR32MG24_em01_voltage_scaling.ewd │ │ │ ├── EFR32MG24_em01_voltage_scaling.ewp │ │ │ ├── EFR32MG27_em01_voltage_scaling.ewd │ │ │ ├── EFR32MG27_em01_voltage_scaling.ewp │ │ │ ├── EFR32ZG23_em01_voltage_scaling.ewd │ │ │ ├── EFR32ZG23_em01_voltage_scaling.ewp │ │ │ ├── EFR32ZG28_em01_voltage_scaling.ewd │ │ │ ├── EFR32ZG28_em01_voltage_scaling.ewp │ │ │ └── em01_voltage_scaling.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── em0_dcdc │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_em0_dcdc.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em0_dcdc.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em0_dcdc.slsproj │ │ │ ├── BRD4270B_EFR32FG25_em0_dcdc.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em0_dcdc.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_em0_dcdc.xml │ │ │ ├── EFR32MG24_BRD4186C_em0_dcdc.xml │ │ │ ├── EFR32MG27_BRD4194A_em0_dcdc.xml │ │ │ ├── EFR32ZG23_BRD4204D_em0_dcdc.xml │ │ │ └── EFR32ZG28_BRD4400C_em0_dcdc.xml │ │ ├── iar │ │ │ ├── EFR32FG25_em0_dcdc.ewd │ │ │ ├── EFR32FG25_em0_dcdc.ewp │ │ │ ├── EFR32MG24_em0_dcdc.ewd │ │ │ ├── EFR32MG24_em0_dcdc.ewp │ │ │ ├── EFR32MG27_em0_dcdc.ewd │ │ │ ├── EFR32MG27_em0_dcdc.ewp │ │ │ ├── EFR32ZG23_em0_dcdc.ewd │ │ │ ├── EFR32ZG23_em0_dcdc.ewp │ │ │ ├── EFR32ZG28_em0_dcdc.ewd │ │ │ ├── EFR32ZG28_em0_dcdc.ewp │ │ │ └── em0_dcdc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg25.c │ ├── em1_dcdc │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_em1_dcdc.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em1_dcdc.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em1_dcdc.slsproj │ │ │ ├── BRD4270B_EFR32FG25_em1_dcdc.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em1_dcdc.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_em1_dcdc.xml │ │ │ ├── EFR32MG24_BRD4186C_em1_dcdc.xml │ │ │ ├── EFR32MG27_BRD4194A_em1_dcdc.xml │ │ │ ├── EFR32ZG23_BRD4204D_em1_dcdc.xml │ │ │ └── EFR32ZG28_BRD4400C_em1_dcdc.xml │ │ ├── iar │ │ │ ├── EFR32FG25_em1_dcdc.ewd │ │ │ ├── EFR32FG25_em1_dcdc.ewp │ │ │ ├── EFR32MG24_em1_dcdc.ewd │ │ │ ├── EFR32MG24_em1_dcdc.ewp │ │ │ ├── EFR32MG27_em1_dcdc.ewd │ │ │ ├── EFR32MG27_em1_dcdc.ewp │ │ │ ├── EFR32ZG23_em1_dcdc.ewd │ │ │ ├── EFR32ZG23_em1_dcdc.ewp │ │ │ ├── EFR32ZG28_em1_dcdc.ewd │ │ │ ├── EFR32ZG28_em1_dcdc.ewp │ │ │ └── em1_dcdc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg25.c │ ├── em23_voltage_scaling │ │ ├── SimplicityStudio │ │ │ ├── BRD4111A_EFR32BG27_em23_voltage_scaling.slsproj │ │ │ ├── BRD4182A_EFR32MG22_em23_voltage_scaling.slsproj │ │ │ ├── BRD4186C_EFR32MG24_em23_voltage_scaling.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em23_voltage_scaling.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em23_voltage_scaling.slsproj │ │ │ ├── BRD4270B_EFR32FG25_em23_voltage_scaling.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em23_voltage_scaling.slsproj │ │ ├── doc │ │ │ ├── EFR32BG27_BRD4111A_em23_voltage_scaling.xml │ │ │ ├── EFR32FG25_BRD4270B_em23_voltage_scaling.xml │ │ │ ├── EFR32MG22_BRD4182A_em23_voltage_scaling.xml │ │ │ ├── EFR32MG24_BRD4186C_em23_voltage_scaling.xml │ │ │ ├── EFR32MG27_BRD4194A_em23_voltage_scaling.xml │ │ │ ├── EFR32ZG23_BRD4204D_em23_voltage_scaling.xml │ │ │ └── EFR32ZG28_BRD4400C_em23_voltage_scaling.xml │ │ ├── iar │ │ │ ├── EFR32BG27_em23_voltage_scaling.ewd │ │ │ ├── EFR32BG27_em23_voltage_scaling.ewp │ │ │ ├── EFR32FG25_em23_voltage_scaling.ewd │ │ │ ├── EFR32FG25_em23_voltage_scaling.ewp │ │ │ ├── EFR32MG22_em23_voltage_scaling.ewd │ │ │ ├── EFR32MG22_em23_voltage_scaling.ewp │ │ │ ├── EFR32MG24_em23_voltage_scaling.ewd │ │ │ ├── EFR32MG24_em23_voltage_scaling.ewp │ │ │ ├── EFR32MG27_em23_voltage_scaling.ewd │ │ │ ├── EFR32MG27_em23_voltage_scaling.ewp │ │ │ ├── EFR32ZG23_em23_voltage_scaling.ewd │ │ │ ├── EFR32ZG23_em23_voltage_scaling.ewp │ │ │ ├── EFR32ZG28_em23_voltage_scaling.ewd │ │ │ ├── EFR32ZG28_em23_voltage_scaling.ewp │ │ │ └── em23_voltage_scaling.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg22.c │ │ │ ├── main_xg27_boost.c │ │ │ └── main_xg27_buck.c │ ├── em2_dcdc │ │ ├── SimplicityStudio │ │ │ ├── BRD4111A_EFR32BG27_em2_dcdc.slsproj │ │ │ ├── BRD4186C_EFR32MG24_em2_dcdc.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em2_dcdc.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em2_dcdc.slsproj │ │ │ ├── BRD4270B_EFR32FG25_em2_dcdc.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em2_dcdc.slsproj │ │ ├── doc │ │ │ ├── EFR32BG27_BRD4111A_em2_dcdc.xml │ │ │ ├── EFR32FG25_BRD4270B_em2_dcdc.xml │ │ │ ├── EFR32MG24_BRD4186C_em2_dcdc.xml │ │ │ ├── EFR32MG27_BRD4194A_em2_dcdc.xml │ │ │ ├── EFR32ZG23_BRD4204D_em2_dcdc.xml │ │ │ └── EFR32ZG28_BRD4400C_em2_dcdc.xml │ │ ├── iar │ │ │ ├── EFR32BG27_em2_dcdc.ewd │ │ │ ├── EFR32BG27_em2_dcdc.ewp │ │ │ ├── EFR32FG25_em2_dcdc.ewd │ │ │ ├── EFR32FG25_em2_dcdc.ewp │ │ │ ├── EFR32MG24_em2_dcdc.ewd │ │ │ ├── EFR32MG24_em2_dcdc.ewp │ │ │ ├── EFR32MG27_em2_dcdc.ewd │ │ │ ├── EFR32MG27_em2_dcdc.ewp │ │ │ ├── EFR32ZG23_em2_dcdc.ewd │ │ │ ├── EFR32ZG23_em2_dcdc.ewp │ │ │ ├── EFR32ZG28_em2_dcdc.ewd │ │ │ ├── EFR32ZG28_em2_dcdc.ewp │ │ │ └── em2_dcdc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg27_boost.c │ │ │ └── main_xg27_buck.c │ ├── em3_dcdc │ │ ├── SimplicityStudio │ │ │ ├── BRD4111A_EFR32BG27_em3_dcdc.slsproj │ │ │ ├── BRD4186C_EFR32MG24_em3_dcdc.slsproj │ │ │ ├── BRD4194A_EFR32MG27_em3_dcdc.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_em3_dcdc.slsproj │ │ │ ├── BRD4270B_EFR32FG25_em3_dcdc.slsproj │ │ │ └── BRD4400C_EFR32ZG28_em3_dcdc.slsproj │ │ ├── doc │ │ │ ├── EFR32BG27_BRD4111A_em3_dcdc.xml │ │ │ ├── EFR32FG25_BRD4270B_em3_dcdc.xml │ │ │ ├── EFR32MG24_BRD4186C_em3_dcdc.xml │ │ │ ├── EFR32MG27_BRD4194A_em3_dcdc.xml │ │ │ ├── EFR32ZG23_BRD4204D_em3_dcdc.xml │ │ │ └── EFR32ZG28_BRD4400C_em3_dcdc.xml │ │ ├── iar │ │ │ ├── EFR32BG27_em3_dcdc.ewd │ │ │ ├── EFR32BG27_em3_dcdc.ewp │ │ │ ├── EFR32FG25_em3_dcdc.ewd │ │ │ ├── EFR32FG25_em3_dcdc.ewp │ │ │ ├── EFR32MG24_em3_dcdc.ewd │ │ │ ├── EFR32MG24_em3_dcdc.ewp │ │ │ ├── EFR32MG27_em3_dcdc.ewd │ │ │ ├── EFR32MG27_em3_dcdc.ewp │ │ │ ├── EFR32ZG23_em3_dcdc.ewd │ │ │ ├── EFR32ZG23_em3_dcdc.ewp │ │ │ ├── EFR32ZG28_em3_dcdc.ewd │ │ │ ├── EFR32ZG28_em3_dcdc.ewp │ │ │ └── em3_dcdc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg27_boost.c │ │ │ └── main_xg27_buck.c │ └── em4_no_dcdc │ │ ├── SimplicityStudio │ │ ├── BRD4186C_EFR32MG24_em4_no_dcdc.slsproj │ │ ├── BRD4194A_EFR32MG27_em4_no_dcdc.slsproj │ │ ├── BRD4204D_EFR32ZG23_em4_no_dcdc.slsproj │ │ ├── BRD4270B_EFR32FG25_em4_no_dcdc.slsproj │ │ └── BRD4400C_EFR32ZG28_em4_no_dcdc.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_em4_no_dcdc.xml │ │ ├── EFR32MG24_BRD4186C_em4_no_dcdc.xml │ │ ├── EFR32MG27_BRD4194A_em4_no_dcdc.xml │ │ ├── EFR32ZG23_BRD4204D_em4_no_dcdc.xml │ │ └── EFR32ZG28_BRD4400C_em4_no_dcdc.xml │ │ ├── iar │ │ ├── EFR32FG25_em4_no_dcdc.ewd │ │ ├── EFR32FG25_em4_no_dcdc.ewp │ │ ├── EFR32MG24_em4_no_dcdc.ewd │ │ ├── EFR32MG24_em4_no_dcdc.ewp │ │ ├── EFR32MG27_em4_no_dcdc.ewd │ │ ├── EFR32MG27_em4_no_dcdc.ewp │ │ ├── EFR32ZG23_em4_no_dcdc.ewd │ │ ├── EFR32ZG23_em4_no_dcdc.ewp │ │ ├── EFR32ZG28_em4_no_dcdc.ewd │ │ ├── EFR32ZG28_em4_no_dcdc.ewp │ │ └── em4_no_dcdc.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── etampdet │ ├── etampdet_em2 │ │ ├── SimplicityStudio │ │ │ ├── BRD4194A_EFR32MG27_etampdetect_em2.slsproj │ │ │ └── BRD4270B_EFR32FG25_etampdetect_em2.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_etampdetect_em2.xml │ │ │ └── EFR32MG27_BRD4194A_etampdetect_em2.xml │ │ ├── iar │ │ │ ├── EFR32FG25_etampdetect_em2.ewd │ │ │ ├── EFR32FG25_etampdetect_em2.ewp │ │ │ ├── EFR32MG27_etampdetect_em2.ewd │ │ │ ├── EFR32MG27_etampdetect_em2.ewp │ │ │ └── etampdetect_em2.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_xg25.c │ │ │ └── main_xg27.c │ └── etampdet_em4 │ │ ├── SimplicityStudio │ │ ├── BRD4194A_EFR32MG27_etampdetect_em4.slsproj │ │ └── BRD4270B_EFR32FG25_etampdetect_em4.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_etampdetect_em4.xml │ │ └── EFR32MG27_BRD4194A_etampdetect_em4.xml │ │ ├── iar │ │ ├── EFR32FG25_etampdetect_em4.ewd │ │ ├── EFR32FG25_etampdetect_em4.ewp │ │ ├── EFR32MG27_etampdetect_em4.ewd │ │ ├── EFR32MG27_etampdetect_em4.ewp │ │ └── etampdetect_em4.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_xg25.c │ │ └── main_xg27.c ├── euart │ ├── euart_echo │ │ ├── SimplicityStudio │ │ │ └── BRD4182A_EFR32MG22_euart_echo.slsproj │ │ ├── doc │ │ │ └── EFR32MG22_BRD4182A_euart_echo.xml │ │ ├── iar │ │ │ ├── EFR32MG22_euart_echo.ewd │ │ │ ├── EFR32MG22_euart_echo.ewp │ │ │ └── euart_echo.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_xg2x.c │ ├── euart_half_duplex │ │ ├── SimplicityStudio │ │ │ └── BRD4182A_EFR32MG22_euart_half_duplex.slsproj │ │ ├── doc │ │ │ └── EFR32MG22_BRD4182A_euart_half_duplex.xml │ │ ├── iar │ │ │ ├── EFR32MG22_euart_half_duplex.ewd │ │ │ ├── EFR32MG22_euart_half_duplex.ewp │ │ │ └── euart_half_duplex.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_xg2x.c │ └── euart_ldma_em2 │ │ ├── SimplicityStudio │ │ └── BRD4182A_EFR32MG22_euart_ldma_em2.slsproj │ │ ├── doc │ │ └── EFR32MG22_BRD4182A_euart_ldma_em2.xml │ │ ├── iar │ │ ├── EFR32MG22_euart_ldma_em2.ewd │ │ ├── EFR32MG22_euart_ldma_em2.ewp │ │ └── euart_ldma_em2.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── eusart │ ├── async_autobaud │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_async_autobaud.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_async_autobaud.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_async_autobaud.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_async_autobaud.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_async_autobaud.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_async_autobaud.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_async_autobaud.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_async_autobaud.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_async_autobaud.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_async_autobaud.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_async_autobaud.ewd │ │ │ ├── EFR32FG25_eusart_async_autobaud.ewp │ │ │ ├── EFR32MG24_eusart_async_autobaud.ewd │ │ │ ├── EFR32MG24_eusart_async_autobaud.ewp │ │ │ ├── EFR32MG27_eusart_async_autobaud.ewd │ │ │ ├── EFR32MG27_eusart_async_autobaud.ewp │ │ │ ├── EFR32ZG23_eusart_async_autobaud.ewd │ │ │ ├── EFR32ZG23_eusart_async_autobaud.ewp │ │ │ ├── EFR32ZG28_eusart_async_autobaud.ewd │ │ │ ├── EFR32ZG28_eusart_async_autobaud.ewp │ │ │ └── eusart_async_autobaud.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg27.c │ ├── async_dma_em2 │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_async_dma_em2.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_async_dma_em2.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_async_dma_em2.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_async_dma_em2.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_async_dma_em2.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_async_dma_em2.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_async_dma_em2.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_async_dma_em2.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_async_dma_em2.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_async_dma_em2.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_async_dma_em2.ewd │ │ │ ├── EFR32FG25_eusart_async_dma_em2.ewp │ │ │ ├── EFR32MG24_eusart_async_dma_em2.ewd │ │ │ ├── EFR32MG24_eusart_async_dma_em2.ewp │ │ │ ├── EFR32MG27_eusart_async_dma_em2.ewd │ │ │ ├── EFR32MG27_eusart_async_dma_em2.ewp │ │ │ ├── EFR32ZG23_eusart_async_dma_em2.ewd │ │ │ ├── EFR32ZG23_eusart_async_dma_em2.ewp │ │ │ ├── EFR32ZG28_eusart_async_dma_em2.ewd │ │ │ ├── EFR32ZG28_eusart_async_dma_em2.ewp │ │ │ └── eusart_async_dma_em2.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg27.c │ ├── async_half_duplex │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_async_half_duplex.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_async_half_duplex.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_async_half_duplex.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_async_half_duplex.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_async_half_duplex.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_async_half_duplex.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_async_half_duplex.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_async_half_duplex.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_async_half_duplex.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_async_half_duplex.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_async_half_duplex.ewd │ │ │ ├── EFR32FG25_eusart_async_half_duplex.ewp │ │ │ ├── EFR32MG24_eusart_async_half_duplex.ewd │ │ │ ├── EFR32MG24_eusart_async_half_duplex.ewp │ │ │ ├── EFR32MG27_eusart_async_half_duplex.ewd │ │ │ ├── EFR32MG27_eusart_async_half_duplex.ewp │ │ │ ├── EFR32ZG23_eusart_async_half_duplex.ewd │ │ │ ├── EFR32ZG23_eusart_async_half_duplex.ewp │ │ │ ├── EFR32ZG28_eusart_async_half_duplex.ewd │ │ │ ├── EFR32ZG28_eusart_async_half_duplex.ewp │ │ │ └── eusart_async_half_duplex.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg27.c │ ├── async_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_async_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_async_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_async_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_async_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_async_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_async_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_async_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_async_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_async_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_async_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_async_interrupt.ewd │ │ │ ├── EFR32FG25_eusart_async_interrupt.ewp │ │ │ ├── EFR32MG24_eusart_async_interrupt.ewd │ │ │ ├── EFR32MG24_eusart_async_interrupt.ewp │ │ │ ├── EFR32MG27_eusart_async_interrupt.ewd │ │ │ ├── EFR32MG27_eusart_async_interrupt.ewp │ │ │ ├── EFR32ZG23_eusart_async_interrupt.ewd │ │ │ ├── EFR32ZG23_eusart_async_interrupt.ewp │ │ │ ├── EFR32ZG28_eusart_async_interrupt.ewd │ │ │ ├── EFR32ZG28_eusart_async_interrupt.ewp │ │ │ └── eusart_async_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg27_xg28.c │ ├── async_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_async_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_async_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_async_polled.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_async_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_async_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_async_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_async_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_async_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_async_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_async_polled.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_async_polled.ewd │ │ │ ├── EFR32FG25_eusart_async_polled.ewp │ │ │ ├── EFR32MG24_eusart_async_polled.ewd │ │ │ ├── EFR32MG24_eusart_async_polled.ewp │ │ │ ├── EFR32MG27_eusart_async_polled.ewd │ │ │ ├── EFR32MG27_eusart_async_polled.ewp │ │ │ ├── EFR32ZG23_eusart_async_polled.ewd │ │ │ ├── EFR32ZG23_eusart_async_polled.ewp │ │ │ ├── EFR32ZG28_eusart_async_polled.ewd │ │ │ ├── EFR32ZG28_eusart_async_polled.ewp │ │ │ └── eusart_async_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg27_xg28.c │ ├── spi_main_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_spi_main_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_spi_main_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_main_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_spi_main_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_spi_main_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_spi_main_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_spi_main_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_spi_main_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_main_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_spi_main_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_spi_main_dma.ewd │ │ │ ├── EFR32FG25_eusart_spi_main_dma.ewp │ │ │ ├── EFR32MG24_eusart_spi_main_dma.ewd │ │ │ ├── EFR32MG24_eusart_spi_main_dma.ewp │ │ │ ├── EFR32MG27_eusart_spi_main_dma.ewd │ │ │ ├── EFR32MG27_eusart_spi_main_dma.ewp │ │ │ ├── EFR32ZG23_eusart_spi_main_dma.ewd │ │ │ ├── EFR32ZG23_eusart_spi_main_dma.ewp │ │ │ ├── EFR32ZG28_eusart_spi_main_dma.ewd │ │ │ ├── EFR32ZG28_eusart_spi_main_dma.ewp │ │ │ └── eusart_spi_main_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ ├── spi_main_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_spi_main_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_spi_main_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_main_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_spi_main_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_spi_main_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_spi_main_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_spi_main_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_spi_main_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_main_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_spi_main_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_spi_main_interrupt.ewd │ │ │ ├── EFR32FG25_eusart_spi_main_interrupt.ewp │ │ │ ├── EFR32MG24_eusart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG24_eusart_spi_main_interrupt.ewp │ │ │ ├── EFR32MG27_eusart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG27_eusart_spi_main_interrupt.ewp │ │ │ ├── EFR32ZG23_eusart_spi_main_interrupt.ewd │ │ │ ├── EFR32ZG23_eusart_spi_main_interrupt.ewp │ │ │ ├── EFR32ZG28_eusart_spi_main_interrupt.ewd │ │ │ ├── EFR32ZG28_eusart_spi_main_interrupt.ewp │ │ │ └── eusart_spi_main_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ ├── spi_main_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_spi_main_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_spi_main_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_main_polled.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_spi_main_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_spi_main_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_spi_main_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_spi_main_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_spi_main_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_main_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_spi_main_polled.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_spi_main_polled.ewd │ │ │ ├── EFR32FG25_eusart_spi_main_polled.ewp │ │ │ ├── EFR32MG24_eusart_spi_main_polled.ewd │ │ │ ├── EFR32MG24_eusart_spi_main_polled.ewp │ │ │ ├── EFR32MG27_eusart_spi_main_polled.ewd │ │ │ ├── EFR32MG27_eusart_spi_main_polled.ewp │ │ │ ├── EFR32ZG23_eusart_spi_main_polled.ewd │ │ │ ├── EFR32ZG23_eusart_spi_main_polled.ewp │ │ │ ├── EFR32ZG28_eusart_spi_main_polled.ewd │ │ │ ├── EFR32ZG28_eusart_spi_main_polled.ewp │ │ │ └── eusart_spi_main_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ ├── spi_secondary_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_spi_secondary_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_spi_secondary_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_secondary_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_spi_secondary_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_spi_secondary_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_spi_secondary_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_spi_secondary_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_spi_secondary_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_secondary_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_spi_secondary_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_spi_secondary_dma.ewd │ │ │ ├── EFR32FG25_eusart_spi_secondary_dma.ewp │ │ │ ├── EFR32MG24_eusart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG24_eusart_spi_secondary_dma.ewp │ │ │ ├── EFR32MG27_eusart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG27_eusart_spi_secondary_dma.ewp │ │ │ ├── EFR32ZG23_eusart_spi_secondary_dma.ewd │ │ │ ├── EFR32ZG23_eusart_spi_secondary_dma.ewp │ │ │ ├── EFR32ZG28_eusart_spi_secondary_dma.ewd │ │ │ ├── EFR32ZG28_eusart_spi_secondary_dma.ewp │ │ │ └── eusart_spi_secondary_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ ├── spi_secondary_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_eusart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_eusart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_eusart_spi_secondary_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_eusart_spi_secondary_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_eusart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_eusart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_eusart_spi_secondary_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_secondary_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_eusart_spi_secondary_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_eusart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32FG25_eusart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32MG24_eusart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG24_eusart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32MG27_eusart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG27_eusart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32ZG23_eusart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32ZG23_eusart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32ZG28_eusart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32ZG28_eusart_spi_secondary_interrupt.ewp │ │ │ └── eusart_spi_secondary_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ └── spi_secondary_polled │ │ ├── SimplicityStudio │ │ ├── BRD4186C_EFR32MG24_eusart_spi_secondary_polled.slsproj │ │ ├── BRD4194A_EFR32MG27_eusart_spi_secondary_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_eusart_spi_secondary_polled.slsproj │ │ ├── BRD4270B_EFR32FG25_eusart_spi_secondary_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_eusart_spi_secondary_polled.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_eusart_spi_secondary_polled.xml │ │ ├── EFR32MG24_BRD4186C_eusart_spi_secondary_polled.xml │ │ ├── EFR32MG27_BRD4194A_eusart_spi_secondary_polled.xml │ │ ├── EFR32ZG23_BRD4204D_eusart_spi_secondary_polled.xml │ │ └── EFR32ZG28_BRD4400C_eusart_spi_secondary_polled.xml │ │ ├── iar │ │ ├── EFR32FG25_eusart_spi_secondary_polled.ewd │ │ ├── EFR32FG25_eusart_spi_secondary_polled.ewp │ │ ├── EFR32MG24_eusart_spi_secondary_polled.ewd │ │ ├── EFR32MG24_eusart_spi_secondary_polled.ewp │ │ ├── EFR32MG27_eusart_spi_secondary_polled.ewd │ │ ├── EFR32MG27_eusart_spi_secondary_polled.ewp │ │ ├── EFR32ZG23_eusart_spi_secondary_polled.ewd │ │ ├── EFR32ZG23_eusart_spi_secondary_polled.ewp │ │ ├── EFR32ZG28_eusart_spi_secondary_polled.ewd │ │ ├── EFR32ZG28_eusart_spi_secondary_polled.ewp │ │ └── eusart_spi_secondary_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ ├── main_xg25.c │ │ ├── main_xg27.c │ │ └── main_xg28.c ├── gpcrc │ ├── gpcrc_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_gpcrc_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_gpcrc_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_gpcrc_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_gpcrc_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_gpcrc_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_gpcrc_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_gpcrc_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_gpcrc_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_gpcrc_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_gpcrc_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_gpcrc_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_gpcrc_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_gpcrc_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_gpcrc_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_gpcrc_dma.ewd │ │ │ ├── EFR32FG25_gpcrc_dma.ewp │ │ │ ├── EFR32MG21_gpcrc_dma.ewd │ │ │ ├── EFR32MG21_gpcrc_dma.ewp │ │ │ ├── EFR32MG22_gpcrc_dma.ewd │ │ │ ├── EFR32MG22_gpcrc_dma.ewp │ │ │ ├── EFR32MG24_gpcrc_dma.ewd │ │ │ ├── EFR32MG24_gpcrc_dma.ewp │ │ │ ├── EFR32MG27_gpcrc_dma.ewd │ │ │ ├── EFR32MG27_gpcrc_dma.ewp │ │ │ ├── EFR32ZG23_gpcrc_dma.ewd │ │ │ ├── EFR32ZG23_gpcrc_dma.ewp │ │ │ ├── EFR32ZG28_gpcrc_dma.ewd │ │ │ ├── EFR32ZG28_gpcrc_dma.ewp │ │ │ └── gpcrc.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg21.c │ └── gpcrc_software │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_gpcrc_software.slsproj │ │ ├── BRD4182A_EFR32MG22_gpcrc_software.slsproj │ │ ├── BRD4186C_EFR32MG24_gpcrc_software.slsproj │ │ ├── BRD4194A_EFR32MG27_gpcrc_software.slsproj │ │ ├── BRD4204D_EFR32ZG23_gpcrc_software.slsproj │ │ ├── BRD4270B_EFR32FG25_gpcrc_software.slsproj │ │ └── BRD4400C_EFR32ZG28_gpcrc_software.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_gpcrc_software.xml │ │ ├── EFR32MG21_BRD4181A_gpcrc_software.xml │ │ ├── EFR32MG22_BRD4182A_gpcrc_software.xml │ │ ├── EFR32MG24_BRD4186C_gpcrc_software.xml │ │ ├── EFR32MG27_BRD4194A_gpcrc_software.xml │ │ ├── EFR32ZG23_BRD4204D_gpcrc_software.xml │ │ └── EFR32ZG28_BRD4400C_gpcrc_software.xml │ │ ├── iar │ │ ├── EFR32FG25_gpcrc_software.ewd │ │ ├── EFR32FG25_gpcrc_software.ewp │ │ ├── EFR32MG21_gpcrc_software.ewd │ │ ├── EFR32MG21_gpcrc_software.ewp │ │ ├── EFR32MG22_gpcrc_software.ewd │ │ ├── EFR32MG22_gpcrc_software.ewp │ │ ├── EFR32MG24_gpcrc_software.ewd │ │ ├── EFR32MG24_gpcrc_software.ewp │ │ ├── EFR32MG27_gpcrc_software.ewd │ │ ├── EFR32MG27_gpcrc_software.ewp │ │ ├── EFR32ZG23_gpcrc_software.ewd │ │ ├── EFR32ZG23_gpcrc_software.ewp │ │ ├── EFR32ZG28_gpcrc_software.ewd │ │ ├── EFR32ZG28_gpcrc_software.ewp │ │ └── gpcrc.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_xg21.c ├── gpio │ ├── gpio_em4_wakeup │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_gpio_em4_wakeup.slsproj │ │ │ ├── BRD4182A_EFR32MG22_gpio_em4_wakeup.slsproj │ │ │ ├── BRD4186C_EFR32MG24_gpio_em4_wakeup.slsproj │ │ │ ├── BRD4194A_EFR32MG27_gpio_em4_wakeup.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_gpio_em4_wakeup.slsproj │ │ │ ├── BRD4270B_EFR32FG25_gpio_em4_wakeup.slsproj │ │ │ └── BRD4400C_EFR32ZG28_gpio_em4_wakeup.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_gpio_em4_wakeup.xml │ │ │ ├── EFR32MG21_BRD4181A_gpio_em4_wakeup.xml │ │ │ ├── EFR32MG22_BRD4182A_gpio_em4_wakeup.xml │ │ │ ├── EFR32MG24_BRD4186C_gpio_em4_wakeup.xml │ │ │ ├── EFR32MG27_BRD4194A_gpio_em4_wakeup.xml │ │ │ ├── EFR32ZG23_BRD4204D_gpio_em4_wakeup.xml │ │ │ └── EFR32ZG28_BRD4400C_gpio_em4_wakeup.xml │ │ ├── iar │ │ │ ├── EFR32FG25_gpio_em4_wakeup.ewd │ │ │ ├── EFR32FG25_gpio_em4_wakeup.ewp │ │ │ ├── EFR32MG21_gpio_em4_wakeup.ewd │ │ │ ├── EFR32MG21_gpio_em4_wakeup.ewp │ │ │ ├── EFR32MG22_gpio_em4_wakeup.ewd │ │ │ ├── EFR32MG22_gpio_em4_wakeup.ewp │ │ │ ├── EFR32MG24_gpio_em4_wakeup.ewd │ │ │ ├── EFR32MG24_gpio_em4_wakeup.ewp │ │ │ ├── EFR32MG27_gpio_em4_wakeup.ewd │ │ │ ├── EFR32MG27_gpio_em4_wakeup.ewp │ │ │ ├── EFR32ZG23_gpio_em4_wakeup.ewd │ │ │ ├── EFR32ZG23_gpio_em4_wakeup.ewp │ │ │ ├── EFR32ZG28_gpio_em4_wakeup.ewd │ │ │ ├── EFR32ZG28_gpio_em4_wakeup.ewp │ │ │ └── gpio_em4_wakeup.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg21.c │ │ │ ├── main_xg22_xg25.c │ │ │ └── main_xg27.c │ ├── gpio_periph │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_gpio_periph.slsproj │ │ │ ├── BRD4182A_EFR32MG22_gpio_periph.slsproj │ │ │ ├── BRD4186C_EFR32MG24_gpio_periph.slsproj │ │ │ ├── BRD4194A_EFR32MG27_gpio_periph.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_gpio_periph.slsproj │ │ │ ├── BRD4270B_EFR32FG25_gpio_periph.slsproj │ │ │ └── BRD4400C_EFR32ZG28_gpio_periph.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_gpio_periph.xml │ │ │ ├── EFR32MG21_BRD4181A_gpio_periph.xml │ │ │ ├── EFR32MG22_BRD4182A_gpio_periph.xml │ │ │ ├── EFR32MG24_BRD4186C_gpio_periph.xml │ │ │ ├── EFR32MG27_BRD4194A_gpio_periph.xml │ │ │ ├── EFR32ZG23_BRD4204D_gpio_periph.xml │ │ │ └── EFR32ZG28_BRD4400C_gpio_periph.xml │ │ ├── iar │ │ │ ├── EFR32FG25_gpio_periph.ewd │ │ │ ├── EFR32FG25_gpio_periph.ewp │ │ │ ├── EFR32MG21_gpio_periph.ewd │ │ │ ├── EFR32MG21_gpio_periph.ewp │ │ │ ├── EFR32MG22_gpio_periph.ewd │ │ │ ├── EFR32MG22_gpio_periph.ewp │ │ │ ├── EFR32MG24_gpio_periph.ewd │ │ │ ├── EFR32MG24_gpio_periph.ewp │ │ │ ├── EFR32MG27_gpio_periph.ewd │ │ │ ├── EFR32MG27_gpio_periph.ewp │ │ │ ├── EFR32ZG23_gpio_periph.ewd │ │ │ ├── EFR32ZG23_gpio_periph.ewp │ │ │ ├── EFR32ZG28_gpio_periph.ewd │ │ │ ├── EFR32ZG28_gpio_periph.ewp │ │ │ └── gpio_periph.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gpio_periph_s2.c │ │ │ ├── main_gpio_periph_s2_xg25.c │ │ │ └── main_gpio_periph_s2_xg28.c │ ├── gpio_slew_rate │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_gpio_slew_rate.slsproj │ │ │ ├── BRD4182A_EFR32MG22_gpio_slew_rate.slsproj │ │ │ ├── BRD4186C_EFR32MG24_gpio_slew_rate.slsproj │ │ │ ├── BRD4194A_EFR32MG27_gpio_slew_rate.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_gpio_slew_rate.slsproj │ │ │ ├── BRD4270B_EFR32FG25_gpio_slew_rate.slsproj │ │ │ └── BRD4400C_EFR32ZG28_gpio_slew_rate.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_gpio_slew_rate.xml │ │ │ ├── EFR32MG21_BRD4181A_gpio_slew_rate.xml │ │ │ ├── EFR32MG22_BRD4182A_gpio_slew_rate.xml │ │ │ ├── EFR32MG24_BRD4186C_gpio_slew_rate.xml │ │ │ ├── EFR32MG27_BRD4194A_gpio_slew_rate.xml │ │ │ ├── EFR32ZG23_BRD4204D_gpio_slew_rate.xml │ │ │ └── EFR32ZG28_BRD4400C_gpio_slew_rate.xml │ │ ├── iar │ │ │ ├── EFR32FG25_gpio_slew_rate.ewd │ │ │ ├── EFR32FG25_gpio_slew_rate.ewp │ │ │ ├── EFR32MG21_gpio_slew_rate.ewd │ │ │ ├── EFR32MG21_gpio_slew_rate.ewp │ │ │ ├── EFR32MG22_gpio_slew_rate.ewd │ │ │ ├── EFR32MG22_gpio_slew_rate.ewp │ │ │ ├── EFR32MG24_gpio_slew_rate.ewd │ │ │ ├── EFR32MG24_gpio_slew_rate.ewp │ │ │ ├── EFR32MG27_gpio_slew_rate.ewd │ │ │ ├── EFR32MG27_gpio_slew_rate.ewp │ │ │ ├── EFR32ZG23_gpio_slew_rate.ewd │ │ │ ├── EFR32ZG23_gpio_slew_rate.ewp │ │ │ ├── EFR32ZG28_gpio_slew_rate.ewd │ │ │ ├── EFR32ZG28_gpio_slew_rate.ewp │ │ │ └── gpio_slew_rate.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_gpio_slew_rate_pb0_even_s2.c │ │ │ ├── main_gpio_slew_rate_pb0_odd_s2.c │ │ │ ├── main_gpio_slew_rate_s2_xg27.c │ │ │ └── main_gpio_slew_rate_s2_xg28.c │ ├── switch_led_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_switch_led_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_switch_led_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_switch_led_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_switch_led_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_switch_led_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_switch_led_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_switch_led_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_switch_led_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_switch_led_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_switch_led_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_switch_led_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_switch_led_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_switch_led_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_switch_led_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_switch_led_interrupt.ewd │ │ │ ├── EFR32FG25_switch_led_interrupt.ewp │ │ │ ├── EFR32MG21_switch_led_interrupt.ewd │ │ │ ├── EFR32MG21_switch_led_interrupt.ewp │ │ │ ├── EFR32MG22_switch_led_interrupt.ewd │ │ │ ├── EFR32MG22_switch_led_interrupt.ewp │ │ │ ├── EFR32MG24_switch_led_interrupt.ewd │ │ │ ├── EFR32MG24_switch_led_interrupt.ewp │ │ │ ├── EFR32MG27_switch_led_interrupt.ewd │ │ │ ├── EFR32MG27_switch_led_interrupt.ewp │ │ │ ├── EFR32ZG23_switch_led_interrupt.ewd │ │ │ ├── EFR32ZG23_switch_led_interrupt.ewp │ │ │ ├── EFR32ZG28_switch_led_interrupt.ewd │ │ │ ├── EFR32ZG28_switch_led_interrupt.ewp │ │ │ └── switch_led_interrupt.eww │ │ ├── readme.txt │ │ ├── readme_xg21.txt │ │ ├── readme_xg27.txt │ │ └── src │ │ │ ├── main_switch_led_int_s2.c │ │ │ ├── main_switch_led_int_s2_xg21.c │ │ │ └── main_switch_led_int_s2_xg27.c │ └── switch_led_polled │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_switch_led_polled.slsproj │ │ ├── BRD4182A_EFR32MG22_switch_led_polled.slsproj │ │ ├── BRD4186C_EFR32MG24_switch_led_polled.slsproj │ │ ├── BRD4194A_EFR32MG27_switch_led_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_switch_led_polled.slsproj │ │ ├── BRD4270B_EFR32FG25_switch_led_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_switch_led_polled.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_switch_led_polled.xml │ │ ├── EFR32MG21_BRD4181A_switch_led_polled.xml │ │ ├── EFR32MG22_BRD4182A_switch_led_polled.xml │ │ ├── EFR32MG24_BRD4186C_switch_led_polled.xml │ │ ├── EFR32MG27_BRD4194A_switch_led_polled.xml │ │ ├── EFR32ZG23_BRD4204D_switch_led_polled.xml │ │ └── EFR32ZG28_BRD4400C_switch_led_polled.xml │ │ ├── iar │ │ ├── EFR32FG25_switch_led_polled.ewd │ │ ├── EFR32FG25_switch_led_polled.ewp │ │ ├── EFR32MG21_switch_led_polled.ewd │ │ ├── EFR32MG21_switch_led_polled.ewp │ │ ├── EFR32MG22_switch_led_polled.ewd │ │ ├── EFR32MG22_switch_led_polled.ewp │ │ ├── EFR32MG24_switch_led_polled.ewd │ │ ├── EFR32MG24_switch_led_polled.ewp │ │ ├── EFR32MG27_switch_led_polled.ewd │ │ ├── EFR32MG27_switch_led_polled.ewp │ │ ├── EFR32ZG23_switch_led_polled.ewd │ │ ├── EFR32ZG23_switch_led_polled.ewp │ │ ├── EFR32ZG28_switch_led_polled.ewd │ │ ├── EFR32ZG28_switch_led_polled.ewp │ │ └── switch_led_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_switch_led_polled_s2.c │ │ └── main_switch_led_polled_s2_xg27.c ├── i2c │ ├── i2c_follower │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_i2c_follower.slsproj │ │ │ ├── BRD4182A_EFR32MG22_i2c_follower.slsproj │ │ │ ├── BRD4186C_EFR32MG24_i2c_follower.slsproj │ │ │ ├── BRD4194A_EFR32MG27_i2c_follower.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_i2c_follower.slsproj │ │ │ ├── BRD4270B_EFR32FG25_i2c_follower.slsproj │ │ │ └── BRD4400C_EFR32ZG28_i2c_follower.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_i2c_follower.xml │ │ │ ├── EFR32MG21_BRD4181A_i2c_follower.xml │ │ │ ├── EFR32MG22_BRD4182A_i2c_follower.xml │ │ │ ├── EFR32MG24_BRD4186C_i2c_follower.xml │ │ │ ├── EFR32MG27_BRD4194A_i2c_follower.xml │ │ │ ├── EFR32ZG23_BRD4204D_i2c_follower.xml │ │ │ └── EFR32ZG28_BRD4400C_i2c_follower.xml │ │ ├── iar │ │ │ ├── EFR32FG25_i2c_follower.ewd │ │ │ ├── EFR32FG25_i2c_follower.ewp │ │ │ ├── EFR32MG21_i2c_follower.ewd │ │ │ ├── EFR32MG21_i2c_follower.ewp │ │ │ ├── EFR32MG22_i2c_follower.ewd │ │ │ ├── EFR32MG22_i2c_follower.ewp │ │ │ ├── EFR32MG24_i2c_follower.ewd │ │ │ ├── EFR32MG24_i2c_follower.ewp │ │ │ ├── EFR32MG27_i2c_follower.ewd │ │ │ ├── EFR32MG27_i2c_follower.ewp │ │ │ ├── EFR32ZG23_i2c_follower.ewd │ │ │ ├── EFR32ZG23_i2c_follower.ewp │ │ │ ├── EFR32ZG28_i2c_follower.ewd │ │ │ ├── EFR32ZG28_i2c_follower.ewp │ │ │ └── i2c_follower.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg21.c │ │ │ ├── main_xg22.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ ├── i2c_leader_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_i2c_leader_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_i2c_leader_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_i2c_leader_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_i2c_leader_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_i2c_leader_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_i2c_leader_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_i2c_leader_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_i2c_leader_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_i2c_leader_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_i2c_leader_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_i2c_leader_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_i2c_leader_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_i2c_leader_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_i2c_leader_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_i2c_leader_dma.ewd │ │ │ ├── EFR32FG25_i2c_leader_dma.ewp │ │ │ ├── EFR32MG21_i2c_leader_dma.ewd │ │ │ ├── EFR32MG21_i2c_leader_dma.ewp │ │ │ ├── EFR32MG22_i2c_leader_dma.ewd │ │ │ ├── EFR32MG22_i2c_leader_dma.ewp │ │ │ ├── EFR32MG24_i2c_leader_dma.ewd │ │ │ ├── EFR32MG24_i2c_leader_dma.ewp │ │ │ ├── EFR32MG27_i2c_leader_dma.ewd │ │ │ ├── EFR32MG27_i2c_leader_dma.ewp │ │ │ ├── EFR32ZG23_i2c_leader_dma.ewd │ │ │ ├── EFR32ZG23_i2c_leader_dma.ewp │ │ │ ├── EFR32ZG28_i2c_leader_dma.ewd │ │ │ ├── EFR32ZG28_i2c_leader_dma.ewp │ │ │ └── i2c_leader_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_xg21.c │ │ │ ├── main_xg22.c │ │ │ ├── main_xg23.c │ │ │ ├── main_xg24.c │ │ │ ├── main_xg25.c │ │ │ ├── main_xg27.c │ │ │ └── main_xg28.c │ └── i2c_leader_polled │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_i2c_leader_polled.slsproj │ │ ├── BRD4182A_EFR32MG22_i2c_leader_polled.slsproj │ │ ├── BRD4186C_EFR32MG24_i2c_leader_polled.slsproj │ │ ├── BRD4194A_EFR32MG27_i2c_leader_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_i2c_leader_polled.slsproj │ │ ├── BRD4270B_EFR32FG25_i2c_leader_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_i2c_leader_polled.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_i2c_leader_polled.xml │ │ ├── EFR32MG21_BRD4181A_i2c_leader_polled.xml │ │ ├── EFR32MG22_BRD4182A_i2c_leader_polled.xml │ │ ├── EFR32MG24_BRD4186C_i2c_leader_polled.xml │ │ ├── EFR32MG27_BRD4194A_i2c_leader_polled.xml │ │ ├── EFR32ZG23_BRD4204D_i2c_leader_polled.xml │ │ └── EFR32ZG28_BRD4400C_i2c_leader_polled.xml │ │ ├── iar │ │ ├── EFR32FG25_i2c_leader_polled.ewd │ │ ├── EFR32FG25_i2c_leader_polled.ewp │ │ ├── EFR32MG21_i2c_leader_polled.ewd │ │ ├── EFR32MG21_i2c_leader_polled.ewp │ │ ├── EFR32MG22_i2c_leader_polled.ewd │ │ ├── EFR32MG22_i2c_leader_polled.ewp │ │ ├── EFR32MG24_i2c_leader_polled.ewd │ │ ├── EFR32MG24_i2c_leader_polled.ewp │ │ ├── EFR32MG27_i2c_leader_polled.ewd │ │ ├── EFR32MG27_i2c_leader_polled.ewp │ │ ├── EFR32ZG23_i2c_leader_polled.ewd │ │ ├── EFR32ZG23_i2c_leader_polled.ewp │ │ ├── EFR32ZG28_i2c_leader_polled.ewd │ │ ├── EFR32ZG28_i2c_leader_polled.ewp │ │ └── i2c_leader_polled.eww │ │ ├── readme.txt │ │ ├── readme_xg27.txt │ │ └── src │ │ ├── main.c │ │ ├── main_xg27.c │ │ └── main_xg28.c ├── iadc │ ├── iadc_scan_continuous_ldma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_continuous_ldma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_continuous_ldma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_continuous_ldma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_continuous_ldma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_continuous_ldma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_continuous_ldma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_continuous_ldma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_continuous_ldma.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_continuous_ldma.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_continuous_ldma.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_continuous_ldma.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_continuous_ldma.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_continuous_ldma.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_continuous_ldma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32FG25_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32MG21_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32MG21_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32MG22_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32MG22_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32MG24_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32MG24_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32MG27_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32MG27_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32ZG23_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32ZG23_iadc_scan_continuous_ldma.ewp │ │ │ ├── EFR32ZG28_iadc_scan_continuous_ldma.ewd │ │ │ ├── EFR32ZG28_iadc_scan_continuous_ldma.ewp │ │ │ └── iadc_scan_continuous_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_scan_continuous_ldma.c │ ├── iadc_scan_gpio_prs_ldma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_gpio_prs_ldma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_gpio_prs_ldma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_gpio_prs_ldma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_gpio_prs_ldma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_gpio_prs_ldma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_gpio_prs_ldma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_gpio_prs_ldma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_gpio_prs_ldma.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_gpio_prs_ldma.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_gpio_prs_ldma.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_gpio_prs_ldma.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_gpio_prs_ldma.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_gpio_prs_ldma.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_gpio_prs_ldma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32FG25_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG21_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG21_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG22_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG22_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG24_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG24_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG27_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG27_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32ZG23_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32ZG23_iadc_scan_gpio_prs_ldma.ewp │ │ │ ├── EFR32ZG28_iadc_scan_gpio_prs_ldma.ewd │ │ │ ├── EFR32ZG28_iadc_scan_gpio_prs_ldma.ewp │ │ │ └── iadc_scan_gpio_prs_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_scan_gpio_prs_ldma.c │ │ │ └── main_scan_gpio_prs_ldma_xg21.c │ ├── iadc_scan_iadc_timer │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_iadc_timer.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_iadc_timer.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_iadc_timer.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_iadc_timer.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_iadc_timer.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_iadc_timer.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_iadc_timer.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_iadc_timer.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_iadc_timer.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_iadc_timer.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_iadc_timer.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_iadc_timer.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_iadc_timer.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_iadc_timer.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32FG25_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32MG21_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32MG21_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32MG22_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32MG22_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32MG24_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32MG24_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32MG27_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32MG27_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32ZG23_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32ZG23_iadc_scan_iadc_timer.ewp │ │ │ ├── EFR32ZG28_iadc_scan_iadc_timer.ewd │ │ │ ├── EFR32ZG28_iadc_scan_iadc_timer.ewp │ │ │ └── iadc_scan_iadc_timer.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_scan_iadc_timer.c │ ├── iadc_scan_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_interrupt.ewd │ │ │ ├── EFR32FG25_iadc_scan_interrupt.ewp │ │ │ ├── EFR32MG21_iadc_scan_interrupt.ewd │ │ │ ├── EFR32MG21_iadc_scan_interrupt.ewp │ │ │ ├── EFR32MG22_iadc_scan_interrupt.ewd │ │ │ ├── EFR32MG22_iadc_scan_interrupt.ewp │ │ │ ├── EFR32MG24_iadc_scan_interrupt.ewd │ │ │ ├── EFR32MG24_iadc_scan_interrupt.ewp │ │ │ ├── EFR32MG27_iadc_scan_interrupt.ewd │ │ │ ├── EFR32MG27_iadc_scan_interrupt.ewp │ │ │ ├── EFR32ZG23_iadc_scan_interrupt.ewd │ │ │ ├── EFR32ZG23_iadc_scan_interrupt.ewp │ │ │ ├── EFR32ZG28_iadc_scan_interrupt.ewd │ │ │ ├── EFR32ZG28_iadc_scan_interrupt.ewp │ │ │ └── iadc_scan_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_scan_interrupt_dvl_4.c │ │ │ └── main_scan_interrupt_dvl_8.c │ ├── iadc_scan_letimer_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_letimer_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_letimer_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_letimer_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_letimer_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_letimer_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_letimer_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_letimer_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32FG25_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG21_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG21_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG22_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG22_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG24_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG24_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32MG27_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32MG27_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32ZG23_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32ZG23_iadc_scan_letimer_interrupt.ewp │ │ │ ├── EFR32ZG28_iadc_scan_letimer_interrupt.ewd │ │ │ ├── EFR32ZG28_iadc_scan_letimer_interrupt.ewp │ │ │ └── iadc_scan_letimer_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_scan_letimer_interrupt_dvl_4.c │ │ │ └── main_scan_letimer_interrupt_dvl_8.c │ ├── iadc_scan_letimer_prs_ldma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_scan_letimer_prs_ldma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_scan_letimer_prs_ldma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_scan_letimer_prs_ldma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_scan_letimer_prs_ldma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_scan_letimer_prs_ldma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_scan_letimer_prs_ldma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_scan_letimer_prs_ldma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_scan_letimer_prs_ldma.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_scan_letimer_prs_ldma.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_scan_letimer_prs_ldma.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_scan_letimer_prs_ldma.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_scan_letimer_prs_ldma.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_scan_letimer_prs_ldma.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_scan_letimer_prs_ldma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32FG25_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG21_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG21_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG22_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG22_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG24_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG24_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG27_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG27_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32ZG23_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32ZG23_iadc_scan_letimer_prs_ldma.ewp │ │ │ ├── EFR32ZG28_iadc_scan_letimer_prs_ldma.ewd │ │ │ ├── EFR32ZG28_iadc_scan_letimer_prs_ldma.ewp │ │ │ └── iadc_scan_letimer_prs_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_scan_letimer_prs_ldma.c │ │ │ ├── main_scan_letimer_prs_ldma_xg21_xg22.c │ │ │ └── main_scan_letimer_prs_ldma_xg25_xg28.c │ ├── iadc_single_calibration │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_calibration.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_calibration.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_calibration.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_calibration.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_calibration.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_calibration.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_calibration.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_calibration.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_calibration.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_calibration.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_calibration.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_calibration.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_calibration.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_calibration.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_calibration.ewd │ │ │ ├── EFR32FG25_iadc_single_calibration.ewp │ │ │ ├── EFR32MG21_iadc_single_calibration.ewd │ │ │ ├── EFR32MG21_iadc_single_calibration.ewp │ │ │ ├── EFR32MG22_iadc_single_calibration.ewd │ │ │ ├── EFR32MG22_iadc_single_calibration.ewp │ │ │ ├── EFR32MG24_iadc_single_calibration.ewd │ │ │ ├── EFR32MG24_iadc_single_calibration.ewp │ │ │ ├── EFR32MG27_iadc_single_calibration.ewd │ │ │ ├── EFR32MG27_iadc_single_calibration.ewp │ │ │ ├── EFR32ZG23_iadc_single_calibration.ewd │ │ │ ├── EFR32ZG23_iadc_single_calibration.ewp │ │ │ ├── EFR32ZG28_iadc_single_calibration.ewd │ │ │ ├── EFR32ZG28_iadc_single_calibration.ewp │ │ │ └── iadc_single_calibration.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_calibration.c │ │ │ ├── main_single_calibration_xg21_xg22.c │ │ │ └── main_single_calibration_xg27.c │ ├── iadc_single_differential_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_differential_polled.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_differential_polled.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_differential_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_differential_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_differential_polled.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_differential_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_differential_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_differential_polled.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_differential_polled.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_differential_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_differential_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_differential_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_differential_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_differential_polled.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_differential_polled.ewd │ │ │ ├── EFR32FG25_iadc_single_differential_polled.ewp │ │ │ ├── EFR32MG21_iadc_single_differential_polled.ewd │ │ │ ├── EFR32MG21_iadc_single_differential_polled.ewp │ │ │ ├── EFR32MG22_iadc_single_differential_polled.ewd │ │ │ ├── EFR32MG22_iadc_single_differential_polled.ewp │ │ │ ├── EFR32MG24_iadc_single_differential_polled.ewd │ │ │ ├── EFR32MG24_iadc_single_differential_polled.ewp │ │ │ ├── EFR32MG27_iadc_single_differential_polled.ewd │ │ │ ├── EFR32MG27_iadc_single_differential_polled.ewp │ │ │ ├── EFR32ZG23_iadc_single_differential_polled.ewd │ │ │ ├── EFR32ZG23_iadc_single_differential_polled.ewp │ │ │ ├── EFR32ZG28_iadc_single_differential_polled.ewd │ │ │ ├── EFR32ZG28_iadc_single_differential_polled.ewp │ │ │ └── iadc_single_differential_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_single_differential_polled.c │ ├── iadc_single_gpio_prs_ldma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_gpio_prs_ldma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_gpio_prs_ldma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_gpio_prs_ldma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_gpio_prs_ldma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_gpio_prs_ldma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_gpio_prs_ldma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_gpio_prs_ldma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_gpio_prs_ldma.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_gpio_prs_ldma.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_gpio_prs_ldma.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_gpio_prs_ldma.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_gpio_prs_ldma.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_gpio_prs_ldma.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_gpio_prs_ldma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32FG25_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG21_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG21_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG22_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG22_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG24_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG24_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32MG27_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32MG27_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32ZG23_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32ZG23_iadc_single_gpio_prs_ldma.ewp │ │ │ ├── EFR32ZG28_iadc_single_gpio_prs_ldma.ewd │ │ │ ├── EFR32ZG28_iadc_single_gpio_prs_ldma.ewp │ │ │ └── iadc_single_gpio_prs_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_gpio_prs_ldma.c │ │ │ ├── main_single_gpio_prs_ldma_xg21.c │ │ │ └── main_single_gpio_prs_ldma_xg27.c │ ├── iadc_single_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_interrupt.ewd │ │ │ ├── EFR32FG25_iadc_single_interrupt.ewp │ │ │ ├── EFR32MG21_iadc_single_interrupt.ewd │ │ │ ├── EFR32MG21_iadc_single_interrupt.ewp │ │ │ ├── EFR32MG22_iadc_single_interrupt.ewd │ │ │ ├── EFR32MG22_iadc_single_interrupt.ewp │ │ │ ├── EFR32MG24_iadc_single_interrupt.ewd │ │ │ ├── EFR32MG24_iadc_single_interrupt.ewp │ │ │ ├── EFR32MG27_iadc_single_interrupt.ewd │ │ │ ├── EFR32MG27_iadc_single_interrupt.ewp │ │ │ ├── EFR32ZG23_iadc_single_interrupt.ewd │ │ │ ├── EFR32ZG23_iadc_single_interrupt.ewp │ │ │ ├── EFR32ZG28_iadc_single_interrupt.ewd │ │ │ ├── EFR32ZG28_iadc_single_interrupt.ewp │ │ │ └── iadc_single_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_single_interrupt.c │ ├── iadc_single_letimer_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_letimer_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_letimer_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_letimer_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_letimer_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_letimer_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_letimer_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_letimer_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32FG25_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG21_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG21_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG22_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG22_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG24_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG24_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32MG27_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32MG27_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32ZG23_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32ZG23_iadc_single_letimer_interrupt.ewp │ │ │ ├── EFR32ZG28_iadc_single_letimer_interrupt.ewd │ │ │ ├── EFR32ZG28_iadc_single_letimer_interrupt.ewp │ │ │ └── iadc_single_letimer_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_letimer_interrupt.c │ │ │ └── main_single_letimer_interrupt_xg21_xg22.c │ ├── iadc_single_letimer_prs_ldma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_letimer_prs_ldma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_letimer_prs_ldma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_letimer_prs_ldma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_letimer_prs_ldma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_letimer_prs_ldma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_letimer_prs_ldma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_letimer_prs_ldma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_letimer_prs_ldma.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_letimer_prs_ldma.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_letimer_prs_ldma.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_letimer_prs_ldma.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_letimer_prs_ldma.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_letimer_prs_ldma.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_letimer_prs_ldma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32FG25_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG21_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG21_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG22_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG22_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG24_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG24_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32MG27_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32MG27_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32ZG23_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32ZG23_iadc_single_letimer_prs_ldma.ewp │ │ │ ├── EFR32ZG28_iadc_single_letimer_prs_ldma.ewd │ │ │ ├── EFR32ZG28_iadc_single_letimer_prs_ldma.ewp │ │ │ └── iadc_single_letimer_prs_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_letimer_prs_ldma.c │ │ │ └── main_single_letimer_prs_ldma_xg21_xg22.c │ ├── iadc_single_low_current │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_low_current.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_low_current.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_low_current.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_low_current.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_low_current.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_low_current.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_low_current.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_low_current.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_low_current.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_low_current.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_low_current.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_low_current.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_low_current.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_low_current.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_low_current.ewd │ │ │ ├── EFR32FG25_iadc_single_low_current.ewp │ │ │ ├── EFR32MG21_iadc_single_low_current.ewd │ │ │ ├── EFR32MG21_iadc_single_low_current.ewp │ │ │ ├── EFR32MG22_iadc_single_low_current.ewd │ │ │ ├── EFR32MG22_iadc_single_low_current.ewp │ │ │ ├── EFR32MG24_iadc_single_low_current.ewd │ │ │ ├── EFR32MG24_iadc_single_low_current.ewp │ │ │ ├── EFR32MG27_iadc_single_low_current.ewd │ │ │ ├── EFR32MG27_iadc_single_low_current.ewp │ │ │ ├── EFR32ZG23_iadc_single_low_current.ewd │ │ │ ├── EFR32ZG23_iadc_single_low_current.ewp │ │ │ ├── EFR32ZG28_iadc_single_low_current.ewd │ │ │ ├── EFR32ZG28_iadc_single_low_current.ewp │ │ │ └── iadc_single_low_current.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_low_current.c │ │ │ ├── main_single_low_current_xG21.c │ │ │ ├── main_single_low_current_xG22.c │ │ │ └── main_single_low_current_xG27.c │ ├── iadc_single_oversampling │ │ ├── SimplicityStudio │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_oversampling_16bit.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_oversampling_20bit.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_oversampling_16bit.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_oversampling_20bit.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_oversampling_16bit.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_oversampling_20bit.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_oversampling_16bit.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_oversampling_20bit.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_oversampling_16bit.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_oversampling_20bit.slsproj │ │ │ ├── BRD4400C_EFR32ZG28_iadc_single_oversampling_16bit.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_oversampling_20bit.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_oversampling_16bit.xml │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_oversampling_20bit.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_oversampling_16bit.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_oversampling_20bit.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_oversampling_16bit.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_oversampling_20bit.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_oversampling_16bit.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_oversampling_20bit.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_oversampling_16bit.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_oversampling_20bit.xml │ │ │ ├── EFR32ZG28_BRD4400C_iadc_single_oversampling_16bit.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_oversampling_20bit.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32FG25_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32FG25_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32FG25_iadc_single_oversampling_20bit.ewp │ │ │ ├── EFR32MG22_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32MG22_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32MG22_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32MG22_iadc_single_oversampling_20bit.ewp │ │ │ ├── EFR32MG24_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32MG24_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32MG24_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32MG24_iadc_single_oversampling_20bit.ewp │ │ │ ├── EFR32MG27_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32MG27_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32MG27_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32MG27_iadc_single_oversampling_20bit.ewp │ │ │ ├── EFR32ZG23_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32ZG23_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32ZG23_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32ZG23_iadc_single_oversampling_20bit.ewp │ │ │ ├── EFR32ZG28_iadc_single_oversampling_16bit.ewd │ │ │ ├── EFR32ZG28_iadc_single_oversampling_16bit.ewp │ │ │ ├── EFR32ZG28_iadc_single_oversampling_20bit.ewd │ │ │ ├── EFR32ZG28_iadc_single_oversampling_20bit.ewp │ │ │ └── iadc_single_oversampling_16bit.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_single_oversampling_16bit.c │ │ │ └── main_single_oversampling_20bit.c │ ├── iadc_single_window_compare │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_iadc_single_window_compare.slsproj │ │ │ ├── BRD4182A_EFR32MG22_iadc_single_window_compare.slsproj │ │ │ ├── BRD4186C_EFR32MG24_iadc_single_window_compare.slsproj │ │ │ ├── BRD4194A_EFR32MG27_iadc_single_window_compare.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_iadc_single_window_compare.slsproj │ │ │ ├── BRD4270B_EFR32FG25_iadc_single_window_compare.slsproj │ │ │ └── BRD4400C_EFR32ZG28_iadc_single_window_compare.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_iadc_single_window_compare.xml │ │ │ ├── EFR32MG21_BRD4181A_iadc_single_window_compare.xml │ │ │ ├── EFR32MG22_BRD4182A_iadc_single_window_compare.xml │ │ │ ├── EFR32MG24_BRD4186C_iadc_single_window_compare.xml │ │ │ ├── EFR32MG27_BRD4194A_iadc_single_window_compare.xml │ │ │ ├── EFR32ZG23_BRD4204D_iadc_single_window_compare.xml │ │ │ └── EFR32ZG28_BRD4400C_iadc_single_window_compare.xml │ │ ├── iar │ │ │ ├── EFR32FG25_iadc_single_window_compare.ewd │ │ │ ├── EFR32FG25_iadc_single_window_compare.ewp │ │ │ ├── EFR32MG21_iadc_single_window_compare.ewd │ │ │ ├── EFR32MG21_iadc_single_window_compare.ewp │ │ │ ├── EFR32MG22_iadc_single_window_compare.ewd │ │ │ ├── EFR32MG22_iadc_single_window_compare.ewp │ │ │ ├── EFR32MG24_iadc_single_window_compare.ewd │ │ │ ├── EFR32MG24_iadc_single_window_compare.ewp │ │ │ ├── EFR32MG27_iadc_single_window_compare.ewd │ │ │ ├── EFR32MG27_iadc_single_window_compare.ewp │ │ │ ├── EFR32ZG23_iadc_single_window_compare.ewd │ │ │ ├── EFR32ZG23_iadc_single_window_compare.ewp │ │ │ ├── EFR32ZG28_iadc_single_window_compare.ewd │ │ │ ├── EFR32ZG28_iadc_single_window_compare.ewp │ │ │ └── iadc_single_window_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_single_window_compare.c │ └── iadc_vmon │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_iadc_vmon.slsproj │ │ ├── BRD4182A_EFR32MG22_iadc_vmon.slsproj │ │ ├── BRD4186C_EFR32MG24_iadc_vmon.slsproj │ │ ├── BRD4194A_EFR32MG27_iadc_vmon.slsproj │ │ ├── BRD4204D_EFR32ZG23_iadc_vmon.slsproj │ │ ├── BRD4270B_EFR32FG25_iadc_vmon.slsproj │ │ └── BRD4400C_EFR32ZG28_iadc_vmon.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_iadc_vmon.xml │ │ ├── EFR32MG21_BRD4181A_iadc_vmon.xml │ │ ├── EFR32MG22_BRD4182A_iadc_vmon.xml │ │ ├── EFR32MG24_BRD4186C_iadc_vmon.xml │ │ ├── EFR32MG27_BRD4194A_iadc_vmon.xml │ │ ├── EFR32ZG23_BRD4204D_iadc_vmon.xml │ │ └── EFR32ZG28_BRD4400C_iadc_vmon.xml │ │ ├── iar │ │ ├── EFR32FG25_iadc_vmon.ewd │ │ ├── EFR32FG25_iadc_vmon.ewp │ │ ├── EFR32MG21_iadc_vmon.ewd │ │ ├── EFR32MG21_iadc_vmon.ewp │ │ ├── EFR32MG22_iadc_vmon.ewd │ │ ├── EFR32MG22_iadc_vmon.ewp │ │ ├── EFR32MG24_iadc_vmon.ewd │ │ ├── EFR32MG24_iadc_vmon.ewp │ │ ├── EFR32MG27_iadc_vmon.ewd │ │ ├── EFR32MG27_iadc_vmon.ewp │ │ ├── EFR32ZG23_iadc_vmon.ewd │ │ ├── EFR32ZG23_iadc_vmon.ewp │ │ ├── EFR32ZG28_iadc_vmon.ewd │ │ ├── EFR32ZG28_iadc_vmon.ewp │ │ └── iadc_vmon.eww │ │ ├── readme.txt │ │ ├── readme_xg21.txt │ │ └── src │ │ ├── main.c │ │ └── main_xg21.c ├── kit │ ├── EFR32BG27_BRD4111A │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32FG25_BRD4270B │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32MG24_BRD4186C │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32MG27_BRD4194A │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32ZG23_BRD4204D │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32ZG28_BRD4400B │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ ├── EFR32ZG28_BRD4400C │ │ ├── bspconfig.h │ │ ├── mx25flash_config.h │ │ └── retargetserialconfig.h │ └── common │ │ ├── bsp │ │ ├── bsp.h │ │ ├── bsp_bcp.h │ │ ├── bsp_init.c │ │ └── bsp_init.h │ │ └── drivers │ │ ├── mx25flash_spi.c │ │ ├── mx25flash_spi.h │ │ ├── mx25flash_spi_eusart.c │ │ ├── retargetio.c │ │ ├── retargetserial.c │ │ └── retargetserial.h ├── ldma │ ├── ldma_2d_copy │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_2d_copy.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_2d_copy.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_2d_copy.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_2d_copy.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_2d_copy.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_2d_copy.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_2d_copy.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_2d_copy.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_2d_copy.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_2d_copy.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_2d_copy.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_2d_copy.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_2d_copy.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_2d_copy.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_2d_copy.ewd │ │ │ ├── EFR32FG25_ldma_2d_copy.ewp │ │ │ ├── EFR32MG21_ldma_2d_copy.ewd │ │ │ ├── EFR32MG21_ldma_2d_copy.ewp │ │ │ ├── EFR32MG22_ldma_2d_copy.ewd │ │ │ ├── EFR32MG22_ldma_2d_copy.ewp │ │ │ ├── EFR32MG24_ldma_2d_copy.ewd │ │ │ ├── EFR32MG24_ldma_2d_copy.ewp │ │ │ ├── EFR32MG27_ldma_2d_copy.ewd │ │ │ ├── EFR32MG27_ldma_2d_copy.ewp │ │ │ ├── EFR32ZG23_ldma_2d_copy.ewd │ │ │ ├── EFR32ZG23_ldma_2d_copy.ewp │ │ │ ├── EFR32ZG28_ldma_2d_copy.ewd │ │ │ ├── EFR32ZG28_ldma_2d_copy.ewp │ │ │ └── ldma_2d_copy.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_interchannel_synchronization │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_interchannel_synchronization.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_interchannel_synchronization.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_interchannel_synchronization.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_interchannel_synchronization.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_interchannel_synchronization.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_interchannel_synchronization.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32FG25_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG21_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG21_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG22_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG22_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG24_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG24_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32MG27_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32MG27_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32ZG23_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32ZG23_ldma_interchannel_synchronization.ewp │ │ │ ├── EFR32ZG28_ldma_interchannel_synchronization.ewd │ │ │ ├── EFR32ZG28_ldma_interchannel_synchronization.ewp │ │ │ └── ldma_interchannel_synchronization.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_linked_list │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_linked_list.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_linked_list.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_linked_list.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_linked_list.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_linked_list.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_linked_list.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_linked_list.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_linked_list.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_linked_list.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_linked_list.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_linked_list.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_linked_list.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_linked_list.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_linked_list.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_linked_list.ewd │ │ │ ├── EFR32FG25_ldma_linked_list.ewp │ │ │ ├── EFR32MG21_ldma_linked_list.ewd │ │ │ ├── EFR32MG21_ldma_linked_list.ewp │ │ │ ├── EFR32MG22_ldma_linked_list.ewd │ │ │ ├── EFR32MG22_ldma_linked_list.ewp │ │ │ ├── EFR32MG24_ldma_linked_list.ewd │ │ │ ├── EFR32MG24_ldma_linked_list.ewp │ │ │ ├── EFR32MG27_ldma_linked_list.ewd │ │ │ ├── EFR32MG27_ldma_linked_list.ewp │ │ │ ├── EFR32ZG23_ldma_linked_list.ewd │ │ │ ├── EFR32ZG23_ldma_linked_list.ewp │ │ │ ├── EFR32ZG28_ldma_linked_list.ewd │ │ │ ├── EFR32ZG28_ldma_linked_list.ewp │ │ │ └── ldma_linked_list.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_linked_list_looped │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_linked_list_looped.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_linked_list_looped.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_linked_list_looped.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_linked_list_looped.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_linked_list_looped.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_linked_list_looped.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_linked_list_looped.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_linked_list_looped.ewd │ │ │ ├── EFR32FG25_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG21_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG21_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG22_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG22_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG24_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG24_ldma_linked_list_looped.ewp │ │ │ ├── EFR32MG27_ldma_linked_list_looped.ewd │ │ │ ├── EFR32MG27_ldma_linked_list_looped.ewp │ │ │ ├── EFR32ZG23_ldma_linked_list_looped.ewd │ │ │ ├── EFR32ZG23_ldma_linked_list_looped.ewp │ │ │ ├── EFR32ZG28_ldma_linked_list_looped.ewd │ │ │ ├── EFR32ZG28_ldma_linked_list_looped.ewp │ │ │ └── ldma_linked_list_looped.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_ping_pong │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_ping_pong.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_ping_pong.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_ping_pong.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_ping_pong.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_ping_pong.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_ping_pong.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_ping_pong.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_ping_pong.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_ping_pong.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_ping_pong.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_ping_pong.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_ping_pong.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_ping_pong.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_ping_pong.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_ping_pong.ewd │ │ │ ├── EFR32FG25_ldma_ping_pong.ewp │ │ │ ├── EFR32MG21_ldma_ping_pong.ewd │ │ │ ├── EFR32MG21_ldma_ping_pong.ewp │ │ │ ├── EFR32MG22_ldma_ping_pong.ewd │ │ │ ├── EFR32MG22_ldma_ping_pong.ewp │ │ │ ├── EFR32MG24_ldma_ping_pong.ewd │ │ │ ├── EFR32MG24_ldma_ping_pong.ewp │ │ │ ├── EFR32MG27_ldma_ping_pong.ewd │ │ │ ├── EFR32MG27_ldma_ping_pong.ewp │ │ │ ├── EFR32ZG23_ldma_ping_pong.ewd │ │ │ ├── EFR32ZG23_ldma_ping_pong.ewp │ │ │ ├── EFR32ZG28_ldma_ping_pong.ewd │ │ │ ├── EFR32ZG28_ldma_ping_pong.ewp │ │ │ └── ldma_ping_pong.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_scatter_gather │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_scatter_gather.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_scatter_gather.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_scatter_gather.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_scatter_gather.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_scatter_gather.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_scatter_gather.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_scatter_gather.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_scatter_gather.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_scatter_gather.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_scatter_gather.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_scatter_gather.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_scatter_gather.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_scatter_gather.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_scatter_gather.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_scatter_gather.ewd │ │ │ ├── EFR32FG25_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG21_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG21_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG22_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG22_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG24_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG24_ldma_scatter_gather.ewp │ │ │ ├── EFR32MG27_ldma_scatter_gather.ewd │ │ │ ├── EFR32MG27_ldma_scatter_gather.ewp │ │ │ ├── EFR32ZG23_ldma_scatter_gather.ewd │ │ │ ├── EFR32ZG23_ldma_scatter_gather.ewp │ │ │ ├── EFR32ZG28_ldma_scatter_gather.ewd │ │ │ ├── EFR32ZG28_ldma_scatter_gather.ewp │ │ │ └── ldma_scatter_gather.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── ldma_single_button │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_ldma_single_button.slsproj │ │ │ ├── BRD4182A_EFR32MG22_ldma_single_button.slsproj │ │ │ ├── BRD4186C_EFR32MG24_ldma_single_button.slsproj │ │ │ ├── BRD4194A_EFR32MG27_ldma_single_button.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_ldma_single_button.slsproj │ │ │ ├── BRD4270B_EFR32FG25_ldma_single_button.slsproj │ │ │ └── BRD4400C_EFR32ZG28_ldma_single_button.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_ldma_single_button.xml │ │ │ ├── EFR32MG21_BRD4181A_ldma_single_button.xml │ │ │ ├── EFR32MG22_BRD4182A_ldma_single_button.xml │ │ │ ├── EFR32MG24_BRD4186C_ldma_single_button.xml │ │ │ ├── EFR32MG27_BRD4194A_ldma_single_button.xml │ │ │ ├── EFR32ZG23_BRD4204D_ldma_single_button.xml │ │ │ └── EFR32ZG28_BRD4400C_ldma_single_button.xml │ │ ├── iar │ │ │ ├── EFR32FG25_ldma_single_button.ewd │ │ │ ├── EFR32FG25_ldma_single_button.ewp │ │ │ ├── EFR32MG21_ldma_single_button.ewd │ │ │ ├── EFR32MG21_ldma_single_button.ewp │ │ │ ├── EFR32MG22_ldma_single_button.ewd │ │ │ ├── EFR32MG22_ldma_single_button.ewp │ │ │ ├── EFR32MG24_ldma_single_button.ewd │ │ │ ├── EFR32MG24_ldma_single_button.ewp │ │ │ ├── EFR32MG27_ldma_single_button.ewd │ │ │ ├── EFR32MG27_ldma_single_button.ewp │ │ │ ├── EFR32ZG23_ldma_single_button.ewd │ │ │ ├── EFR32ZG23_ldma_single_button.ewp │ │ │ ├── EFR32ZG28_ldma_single_button.ewd │ │ │ ├── EFR32ZG28_ldma_single_button.ewp │ │ │ └── ldma_single_button.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── ldma_single_looped │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_ldma_single_looped.slsproj │ │ ├── BRD4182A_EFR32MG22_ldma_single_looped.slsproj │ │ ├── BRD4186C_EFR32MG24_ldma_single_looped.slsproj │ │ ├── BRD4194A_EFR32MG27_ldma_single_looped.slsproj │ │ ├── BRD4204D_EFR32ZG23_ldma_single_looped.slsproj │ │ ├── BRD4270B_EFR32FG25_ldma_single_looped.slsproj │ │ └── BRD4400C_EFR32ZG28_ldma_single_looped.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_ldma_single_looped.xml │ │ ├── EFR32MG21_BRD4181A_ldma_single_looped.xml │ │ ├── EFR32MG22_BRD4182A_ldma_single_looped.xml │ │ ├── EFR32MG24_BRD4186C_ldma_single_looped.xml │ │ ├── EFR32MG27_BRD4194A_ldma_single_looped.xml │ │ ├── EFR32ZG23_BRD4204D_ldma_single_looped.xml │ │ └── EFR32ZG28_BRD4400C_ldma_single_looped.xml │ │ ├── iar │ │ ├── EFR32FG25_ldma_single_looped.ewd │ │ ├── EFR32FG25_ldma_single_looped.ewp │ │ ├── EFR32MG21_ldma_single_looped.ewd │ │ ├── EFR32MG21_ldma_single_looped.ewp │ │ ├── EFR32MG22_ldma_single_looped.ewd │ │ ├── EFR32MG22_ldma_single_looped.ewp │ │ ├── EFR32MG24_ldma_single_looped.ewd │ │ ├── EFR32MG24_ldma_single_looped.ewp │ │ ├── EFR32MG27_ldma_single_looped.ewd │ │ ├── EFR32MG27_ldma_single_looped.ewp │ │ ├── EFR32ZG23_ldma_single_looped.ewd │ │ ├── EFR32ZG23_ldma_single_looped.ewp │ │ ├── EFR32ZG28_ldma_single_looped.ewd │ │ ├── EFR32ZG28_ldma_single_looped.ewp │ │ └── ldma_single_looped.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── lesense │ ├── lesense_decoder │ │ ├── SimplicityStudio │ │ │ ├── BRD4204D_EFR32ZG23_lesense_decoder.slsproj │ │ │ ├── BRD4270B_EFR32FG25_lesense_decoder.slsproj │ │ │ └── BRD4400C_EFR32ZG28_lesense_decoder.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_lesense_decoder.xml │ │ │ ├── EFR32ZG23_BRD4204D_lesense_decoder.xml │ │ │ ├── EFR32ZG28_BRD4400C_lesense_decoder.xml │ │ │ └── state_machine.svg │ │ ├── iar │ │ │ ├── EFR32FG25_lesense_decoder.ewd │ │ │ ├── EFR32FG25_lesense_decoder.ewp │ │ │ ├── EFR32ZG23_lesense_decoder.ewd │ │ │ ├── EFR32ZG23_lesense_decoder.ewp │ │ │ ├── EFR32ZG28_lesense_decoder.ewd │ │ │ ├── EFR32ZG28_lesense_decoder.ewp │ │ │ └── lesense_decoder.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── lesense_multi_channel │ │ ├── SimplicityStudio │ │ │ ├── BRD4204D_EFR32ZG23_lesense_multi_channel.slsproj │ │ │ ├── BRD4270B_EFR32FG25_lesense_multi_channel.slsproj │ │ │ └── BRD4400C_EFR32ZG28_lesense_multi_channel.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_lesense_multi_channel.xml │ │ │ ├── EFR32ZG23_BRD4204D_lesense_multi_channel.xml │ │ │ └── EFR32ZG28_BRD4400C_lesense_multi_channel.xml │ │ ├── iar │ │ │ ├── EFR32FG25_lesense_multi_channel.ewd │ │ │ ├── EFR32FG25_lesense_multi_channel.ewp │ │ │ ├── EFR32ZG23_lesense_multi_channel.ewd │ │ │ ├── EFR32ZG23_lesense_multi_channel.ewp │ │ │ ├── EFR32ZG28_lesense_multi_channel.ewd │ │ │ ├── EFR32ZG28_lesense_multi_channel.ewp │ │ │ └── lesense_multi_channel.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_xg23.c │ │ │ ├── main_xg25.c │ │ │ └── main_xg28.c │ └── lesense_single_channel │ │ ├── SimplicityStudio │ │ ├── BRD4204D_EFR32ZG23_lesense_single_channel.slsproj │ │ ├── BRD4270B_EFR32FG25_lesense_single_channel.slsproj │ │ └── BRD4400C_EFR32ZG28_lesense_single_channel.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_lesense_single_channel.xml │ │ ├── EFR32ZG23_BRD4204D_lesense_single_channel.xml │ │ └── EFR32ZG28_BRD4400C_lesense_single_channel.xml │ │ ├── iar │ │ ├── EFR32FG25_lesense_single_channel.ewd │ │ ├── EFR32FG25_lesense_single_channel.ewp │ │ ├── EFR32ZG23_lesense_single_channel.ewd │ │ ├── EFR32ZG23_lesense_single_channel.ewp │ │ ├── EFR32ZG28_lesense_single_channel.ewd │ │ ├── EFR32ZG28_lesense_single_channel.ewp │ │ └── lesense_single_channel.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── letimer │ ├── one_shot_output_compare │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_one_shot_output_compare.slsproj │ │ │ ├── BRD4182A_EFR32MG22_one_shot_output_compare.slsproj │ │ │ ├── BRD4186C_EFR32MG24_one_shot_output_compare.slsproj │ │ │ ├── BRD4194A_EFR32MG27_one_shot_output_compare.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_one_shot_output_compare.slsproj │ │ │ ├── BRD4270B_EFR32FG25_one_shot_output_compare.slsproj │ │ │ └── BRD4400C_EFR32ZG28_one_shot_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_one_shot_output_compare.xml │ │ │ ├── EFR32MG21_BRD4181A_one_shot_output_compare.xml │ │ │ ├── EFR32MG22_BRD4182A_one_shot_output_compare.xml │ │ │ ├── EFR32MG24_BRD4186C_one_shot_output_compare.xml │ │ │ ├── EFR32MG27_BRD4194A_one_shot_output_compare.xml │ │ │ ├── EFR32ZG23_BRD4204D_one_shot_output_compare.xml │ │ │ └── EFR32ZG28_BRD4400C_one_shot_output_compare.xml │ │ ├── iar │ │ │ ├── EFR32FG25_one_shot_output_compare.ewd │ │ │ ├── EFR32FG25_one_shot_output_compare.ewp │ │ │ ├── EFR32MG21_one_shot_output_compare.ewd │ │ │ ├── EFR32MG21_one_shot_output_compare.ewp │ │ │ ├── EFR32MG22_one_shot_output_compare.ewd │ │ │ ├── EFR32MG22_one_shot_output_compare.ewp │ │ │ ├── EFR32MG24_one_shot_output_compare.ewd │ │ │ ├── EFR32MG24_one_shot_output_compare.ewp │ │ │ ├── EFR32MG27_one_shot_output_compare.ewd │ │ │ ├── EFR32MG27_one_shot_output_compare.ewp │ │ │ ├── EFR32ZG23_one_shot_output_compare.ewd │ │ │ ├── EFR32ZG23_one_shot_output_compare.ewp │ │ │ ├── EFR32ZG28_one_shot_output_compare.ewd │ │ │ ├── EFR32ZG28_one_shot_output_compare.ewp │ │ │ └── one_shot_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg22.c │ ├── pulse_train │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_pulse_train.slsproj │ │ │ ├── BRD4182A_EFR32MG22_pulse_train.slsproj │ │ │ ├── BRD4186C_EFR32MG24_pulse_train.slsproj │ │ │ ├── BRD4194A_EFR32MG27_pulse_train.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pulse_train.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pulse_train.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pulse_train.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pulse_train.xml │ │ │ ├── EFR32MG21_BRD4181A_pulse_train.xml │ │ │ ├── EFR32MG22_BRD4182A_pulse_train.xml │ │ │ ├── EFR32MG24_BRD4186C_pulse_train.xml │ │ │ ├── EFR32MG27_BRD4194A_pulse_train.xml │ │ │ ├── EFR32ZG23_BRD4204D_pulse_train.xml │ │ │ └── EFR32ZG28_BRD4400C_pulse_train.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pulse_train.ewd │ │ │ ├── EFR32FG25_pulse_train.ewp │ │ │ ├── EFR32MG21_pulse_train.ewd │ │ │ ├── EFR32MG21_pulse_train.ewp │ │ │ ├── EFR32MG22_pulse_train.ewd │ │ │ ├── EFR32MG22_pulse_train.ewp │ │ │ ├── EFR32MG24_pulse_train.ewd │ │ │ ├── EFR32MG24_pulse_train.ewp │ │ │ ├── EFR32MG27_pulse_train.ewd │ │ │ ├── EFR32MG27_pulse_train.ewp │ │ │ ├── EFR32ZG23_pulse_train.ewd │ │ │ ├── EFR32ZG23_pulse_train.ewp │ │ │ ├── EFR32ZG28_pulse_train.ewd │ │ │ ├── EFR32ZG28_pulse_train.ewp │ │ │ └── pulse_train.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg22.c │ └── pulse_width_modulation │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_pulse_width_modulation.slsproj │ │ ├── BRD4182A_EFR32MG22_pulse_width_modulation.slsproj │ │ ├── BRD4186C_EFR32MG24_pulse_width_modulation.slsproj │ │ ├── BRD4194A_EFR32MG27_pulse_width_modulation.slsproj │ │ ├── BRD4204D_EFR32ZG23_pulse_width_modulation.slsproj │ │ ├── BRD4270B_EFR32FG25_pulse_width_modulation.slsproj │ │ └── BRD4400C_EFR32ZG28_pulse_width_modulation.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_pulse_width_modulation.xml │ │ ├── EFR32MG21_BRD4181A_pulse_width_modulation.xml │ │ ├── EFR32MG22_BRD4182A_pulse_width_modulation.xml │ │ ├── EFR32MG24_BRD4186C_pulse_width_modulation.xml │ │ ├── EFR32MG27_BRD4194A_pulse_width_modulation.xml │ │ ├── EFR32ZG23_BRD4204D_pulse_width_modulation.xml │ │ └── EFR32ZG28_BRD4400C_pulse_width_modulation.xml │ │ ├── iar │ │ ├── EFR32FG25_pulse_width_modulation.ewd │ │ ├── EFR32FG25_pulse_width_modulation.ewp │ │ ├── EFR32MG21_pulse_width_modulation.ewd │ │ ├── EFR32MG21_pulse_width_modulation.ewp │ │ ├── EFR32MG22_pulse_width_modulation.ewd │ │ ├── EFR32MG22_pulse_width_modulation.ewp │ │ ├── EFR32MG24_pulse_width_modulation.ewd │ │ ├── EFR32MG24_pulse_width_modulation.ewp │ │ ├── EFR32MG27_pulse_width_modulation.ewd │ │ ├── EFR32MG27_pulse_width_modulation.ewp │ │ ├── EFR32ZG23_pulse_width_modulation.ewd │ │ ├── EFR32ZG23_pulse_width_modulation.ewp │ │ ├── EFR32ZG28_pulse_width_modulation.ewd │ │ ├── EFR32ZG28_pulse_width_modulation.ewp │ │ └── pulse_width_modulation.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg22.c ├── linker_scripts │ ├── xg23_linker_script.ld │ ├── xg23_linker_script_16kb_ram_retention.ld │ ├── xg24_linker_script.ld │ ├── xg24_linker_script_16kb_ram_retention.ld │ ├── xg25_linker_script.ld │ ├── xg25_linker_script_32kb_ram_retention.ld │ ├── xg27_linker_script.ld │ ├── xg27_linker_script_24kb_ram_retention.ld │ ├── xg28_linker_script.ld │ └── xg28_linker_script_16kb_ram_retention.ld ├── msc │ ├── msc_page_lock │ │ ├── CMSIS │ │ │ ├── EFR32xG21 │ │ │ │ └── custom_system_efr32xg21.c │ │ │ ├── EFR32xG22 │ │ │ │ └── custom_system_efr32xg22.c │ │ │ ├── EFR32xG23 │ │ │ │ └── custom_system_efr32xg23.c │ │ │ ├── EFR32xG24 │ │ │ │ └── custom_system_efr32xg24.c │ │ │ ├── EFR32xG25 │ │ │ │ └── custom_system_efr32xg25.c │ │ │ ├── EFR32xG27 │ │ │ │ └── custom_system_efr32xg27.c │ │ │ └── EFR32xG28 │ │ │ │ └── custom_system_efr32xg28.c │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_msc_page_lock.slsproj │ │ │ ├── BRD4182A_EFR32MG22_msc_page_lock.slsproj │ │ │ ├── BRD4186C_EFR32MG24_msc_page_lock.slsproj │ │ │ ├── BRD4194A_EFR32MG27_msc_page_lock.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_msc_page_lock.slsproj │ │ │ ├── BRD4270B_EFR32FG25_msc_page_lock.slsproj │ │ │ └── BRD4400C_EFR32ZG28_msc_page_lock.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_msc_page_lock.xml │ │ │ ├── EFR32MG21_BRD4181A_msc_page_lock.xml │ │ │ ├── EFR32MG22_BRD4182A_msc_page_lock.xml │ │ │ ├── EFR32MG24_BRD4186C_msc_page_lock.xml │ │ │ ├── EFR32MG27_BRD4194A_msc_page_lock.xml │ │ │ ├── EFR32ZG23_BRD4204D_msc_page_lock.xml │ │ │ └── EFR32ZG28_BRD4400C_msc_page_lock.xml │ │ ├── iar │ │ │ ├── EFR32FG25_msc_page_lock.ewd │ │ │ ├── EFR32FG25_msc_page_lock.ewp │ │ │ ├── EFR32MG21_msc_page_lock.ewd │ │ │ ├── EFR32MG21_msc_page_lock.ewp │ │ │ ├── EFR32MG22_msc_page_lock.ewd │ │ │ ├── EFR32MG22_msc_page_lock.ewp │ │ │ ├── EFR32MG24_msc_page_lock.ewd │ │ │ ├── EFR32MG24_msc_page_lock.ewp │ │ │ ├── EFR32MG27_msc_page_lock.ewd │ │ │ ├── EFR32MG27_msc_page_lock.ewp │ │ │ ├── EFR32ZG23_msc_page_lock.ewd │ │ │ ├── EFR32ZG23_msc_page_lock.ewp │ │ │ ├── EFR32ZG28_msc_page_lock.ewd │ │ │ ├── EFR32ZG28_msc_page_lock.ewp │ │ │ └── msc_page_lock.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── msc_rw │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_msc_rw.slsproj │ │ ├── BRD4182A_EFR32MG22_msc_rw.slsproj │ │ ├── BRD4186C_EFR32MG24_msc_rw.slsproj │ │ ├── BRD4194A_EFR32MG27_msc_rw.slsproj │ │ ├── BRD4204D_EFR32ZG23_msc_rw.slsproj │ │ ├── BRD4270B_EFR32FG25_msc_rw.slsproj │ │ └── BRD4400C_EFR32ZG28_msc_rw.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_msc_rw.xml │ │ ├── EFR32MG21_BRD4181A_msc_rw.xml │ │ ├── EFR32MG22_BRD4182A_msc_rw.xml │ │ ├── EFR32MG24_BRD4186C_msc_rw.xml │ │ ├── EFR32MG27_BRD4194A_msc_rw.xml │ │ ├── EFR32ZG23_BRD4204D_msc_rw.xml │ │ └── EFR32ZG28_BRD4400C_msc_rw.xml │ │ ├── iar │ │ ├── EFR32FG25_msc_rw.ewd │ │ ├── EFR32FG25_msc_rw.ewp │ │ ├── EFR32MG21_msc_rw.ewd │ │ ├── EFR32MG21_msc_rw.ewp │ │ ├── EFR32MG22_msc_rw.ewd │ │ ├── EFR32MG22_msc_rw.ewp │ │ ├── EFR32MG24_msc_rw.ewd │ │ ├── EFR32MG24_msc_rw.ewp │ │ ├── EFR32MG27_msc_rw.ewd │ │ ├── EFR32MG27_msc_rw.ewp │ │ ├── EFR32ZG23_msc_rw.ewd │ │ ├── EFR32ZG23_msc_rw.ewp │ │ ├── EFR32ZG28_msc_rw.ewd │ │ ├── EFR32ZG28_msc_rw.ewp │ │ └── msc_rw.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_xG21.c ├── pcnt │ ├── pcnt_extclk_quadrature │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pcnt_extclk_quadrature.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pcnt_extclk_quadrature.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pcnt_extclk_quadrature.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32MG24_BRD4186C_pcnt_extclk_quadrature.xml │ │ │ ├── EFR32ZG23_BRD4204D_pcnt_extclk_quadrature.xml │ │ │ └── EFR32ZG28_BRD4400C_pcnt_extclk_quadrature.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32FG25_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32MG24_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32MG24_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32ZG23_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32ZG23_pcnt_extclk_quadrature.ewp │ │ │ ├── EFR32ZG28_pcnt_extclk_quadrature.ewd │ │ │ ├── EFR32ZG28_pcnt_extclk_quadrature.ewp │ │ │ └── pcnt_extclk_quadrature.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── pcnt_extclk_single_overflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pcnt_extclk_single_overflow.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pcnt_extclk_single_overflow.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pcnt_extclk_single_overflow.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32MG24_BRD4186C_pcnt_extclk_single_overflow.xml │ │ │ ├── EFR32ZG23_BRD4204D_pcnt_extclk_single_overflow.xml │ │ │ └── EFR32ZG28_BRD4400C_pcnt_extclk_single_overflow.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32FG25_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32MG24_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32MG24_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32ZG23_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32ZG23_pcnt_extclk_single_overflow.ewp │ │ │ ├── EFR32ZG28_pcnt_extclk_single_overflow.ewd │ │ │ ├── EFR32ZG28_pcnt_extclk_single_overflow.ewp │ │ │ └── pcnt_extclk_single_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── pcnt_extclk_single_underflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pcnt_extclk_single_underflow.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pcnt_extclk_single_underflow.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pcnt_extclk_single_underflow.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32MG24_BRD4186C_pcnt_extclk_single_underflow.xml │ │ │ ├── EFR32ZG23_BRD4204D_pcnt_extclk_single_underflow.xml │ │ │ └── EFR32ZG28_BRD4400C_pcnt_extclk_single_underflow.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32FG25_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32MG24_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32MG24_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32ZG23_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32ZG23_pcnt_extclk_single_underflow.ewp │ │ │ ├── EFR32ZG28_pcnt_extclk_single_underflow.ewd │ │ │ ├── EFR32ZG28_pcnt_extclk_single_underflow.ewp │ │ │ └── pcnt_extclk_single_underflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── pcnt_oversampling_quadrature │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_pcnt_oversampling_quadrature.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pcnt_oversampling_quadrature.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pcnt_oversampling_quadrature.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pcnt_oversampling_quadrature.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pcnt_oversampling_quadrature.xml │ │ │ ├── EFR32MG24_BRD4186C_pcnt_oversampling_quadrature.xml │ │ │ ├── EFR32ZG23_BRD4204D_pcnt_oversampling_quadrature.xml │ │ │ └── EFR32ZG28_BRD4400C_pcnt_oversampling_quadrature.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pcnt_oversampling_quadrature.ewd │ │ │ ├── EFR32FG25_pcnt_oversampling_quadrature.ewp │ │ │ ├── EFR32MG24_pcnt_oversampling_quadrature.ewd │ │ │ ├── EFR32MG24_pcnt_oversampling_quadrature.ewp │ │ │ ├── EFR32ZG23_pcnt_oversampling_quadrature.ewd │ │ │ ├── EFR32ZG23_pcnt_oversampling_quadrature.ewp │ │ │ ├── EFR32ZG28_pcnt_oversampling_quadrature.ewd │ │ │ ├── EFR32ZG28_pcnt_oversampling_quadrature.ewp │ │ │ └── pcnt_oversampling_quadrature.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── pcnt_single_oversampling_overflow │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_pcnt_single_oversampling_overflow.slsproj │ │ │ ├── BRD4270B_EFR32FG25_pcnt_single_oversampling_overflow.slsproj │ │ │ └── BRD4400C_EFR32ZG28_pcnt_single_oversampling_overflow.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32MG24_BRD4186C_pcnt_single_oversampling_overflow.xml │ │ │ ├── EFR32ZG23_BRD4204D_pcnt_single_oversampling_overflow.xml │ │ │ └── EFR32ZG28_BRD4400C_pcnt_single_oversampling_overflow.xml │ │ ├── iar │ │ │ ├── EFR32FG25_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32FG25_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32MG24_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32MG24_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32ZG23_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32ZG23_pcnt_single_oversampling_overflow.ewp │ │ │ ├── EFR32ZG28_pcnt_single_oversampling_overflow.ewd │ │ │ ├── EFR32ZG28_pcnt_single_oversampling_overflow.ewp │ │ │ └── pcnt_single_oversampling_overflow.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ └── pcnt_single_oversampling_underflow │ │ ├── SimplicityStudio │ │ ├── BRD4186C_EFR32MG24_pcnt_single_oversampling_underflow.slsproj │ │ ├── BRD4204D_EFR32ZG23_pcnt_single_oversampling_underflow.slsproj │ │ ├── BRD4270B_EFR32FG25_pcnt_single_oversampling_underflow.slsproj │ │ └── BRD4400C_EFR32ZG28_pcnt_single_oversampling_underflow.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_pcnt_single_oversampling_underflow.xml │ │ ├── EFR32MG24_BRD4186C_pcnt_single_oversampling_underflow.xml │ │ ├── EFR32ZG23_BRD4204D_pcnt_single_oversampling_underflow.xml │ │ └── EFR32ZG28_BRD4400C_pcnt_single_oversampling_underflow.xml │ │ ├── iar │ │ ├── EFR32FG25_pcnt_single_oversampling_underflow.ewd │ │ ├── EFR32FG25_pcnt_single_oversampling_underflow.ewp │ │ ├── EFR32MG24_pcnt_single_oversampling_underflow.ewd │ │ ├── EFR32MG24_pcnt_single_oversampling_underflow.ewp │ │ ├── EFR32ZG23_pcnt_single_oversampling_underflow.ewd │ │ ├── EFR32ZG23_pcnt_single_oversampling_underflow.ewp │ │ ├── EFR32ZG28_pcnt_single_oversampling_underflow.ewd │ │ ├── EFR32ZG28_pcnt_single_oversampling_underflow.ewp │ │ └── pcnt_single_oversampling_underflow.eww │ │ ├── readme.txt │ │ └── src │ │ └── main.c ├── pdm │ ├── pdm_stereo_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD2602A_EFR32BG27_pdm_stereo_interrupt.slsproj │ │ │ └── BRD4184A_EFR32BG22_pdm_stereo_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32BG22_BRD4184A_pdm_stereo_interrupt.xml │ │ │ └── EFR32BG27_BRD2602A_pdm_stereo_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32BG22_pdm_stereo_interrupt.ewd │ │ │ ├── EFR32BG22_pdm_stereo_interrupt.ewp │ │ │ ├── EFR32BG27_pdm_stereo_interrupt.ewd │ │ │ ├── EFR32BG27_pdm_stereo_interrupt.ewp │ │ │ └── pdm_stereo_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_xg22_pdm_stereo_interrupt.c │ │ │ └── main_xg27_pdm_stereo_interrupt.c │ └── pdm_stereo_ldma │ │ ├── SimplicityStudio │ │ ├── BRD2602A_EFR32BG27_pdm_stereo_ldma.slsproj │ │ └── BRD4184A_EFR32BG22_pdm_stereo_ldma.slsproj │ │ ├── doc │ │ ├── EFR32BG22_BRD4184A_pdm_stereo_ldma.xml │ │ └── EFR32BG27_BRD2602A_pdm_stereo_ldma.xml │ │ ├── iar │ │ ├── EFR32BG22_pdm_stereo_ldma.ewd │ │ ├── EFR32BG22_pdm_stereo_ldma.ewp │ │ ├── EFR32BG27_pdm_stereo_ldma.ewd │ │ ├── EFR32BG27_pdm_stereo_ldma.ewp │ │ └── pdm_stereo_ldma.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_xg22_pdm_stereo_ldma.c │ │ └── main_xg27_pdm_stereo_ldma.c ├── prs │ └── prs_logic_unit │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_prs_logic_unit.slsproj │ │ ├── BRD4182A_EFR32MG22_prs_logic_unit.slsproj │ │ ├── BRD4186C_EFR32MG24_prs_logic_unit.slsproj │ │ ├── BRD4194A_EFR32MG27_prs_logic_unit.slsproj │ │ ├── BRD4204D_EFR32ZG23_prs_logic_unit.slsproj │ │ ├── BRD4270B_EFR32FG25_prs_logic_unit.slsproj │ │ └── BRD4400C_EFR32ZG28_prs_logic_unit.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_prs_logic_unit.xml │ │ ├── EFR32MG21_BRD4181A_prs_logic_unit.xml │ │ ├── EFR32MG22_BRD4182A_prs_logic_unit.xml │ │ ├── EFR32MG24_BRD4186C_prs_logic_unit.xml │ │ ├── EFR32MG27_BRD4194A_prs_logic_unit.xml │ │ ├── EFR32ZG23_BRD4204D_prs_logic_unit.xml │ │ └── EFR32ZG28_BRD4400C_prs_logic_unit.xml │ │ ├── iar │ │ ├── EFR32FG25_prs_logic_unit.ewd │ │ ├── EFR32FG25_prs_logic_unit.ewp │ │ ├── EFR32MG21_prs_logic_unit.ewd │ │ ├── EFR32MG21_prs_logic_unit.ewp │ │ ├── EFR32MG22_prs_logic_unit.ewd │ │ ├── EFR32MG22_prs_logic_unit.ewp │ │ ├── EFR32MG24_prs_logic_unit.ewd │ │ ├── EFR32MG24_prs_logic_unit.ewp │ │ ├── EFR32MG27_prs_logic_unit.ewd │ │ ├── EFR32MG27_prs_logic_unit.ewp │ │ ├── EFR32ZG23_prs_logic_unit.ewd │ │ ├── EFR32ZG23_prs_logic_unit.ewp │ │ ├── EFR32ZG28_prs_logic_unit.ewd │ │ ├── EFR32ZG28_prs_logic_unit.ewp │ │ └── prs_logic_unit.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_ch0_ch1.c │ │ ├── main_chA_chB.c │ │ └── main_xg27.c ├── rtcc │ └── rtcc_interrupt │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_rtcc_interrupt.slsproj │ │ ├── BRD4182A_EFR32MG22_rtcc_interrupt.slsproj │ │ └── BRD4194A_EFR32MG27_rtcc_interrupt.slsproj │ │ ├── doc │ │ ├── EFR32MG21_BRD4181A_rtcc_interrupt.xml │ │ ├── EFR32MG22_BRD4182A_rtcc_interrupt.xml │ │ └── EFR32MG27_BRD4194A_rtcc_interrupt.xml │ │ ├── iar │ │ ├── EFR32MG21_rtcc_interrupt.ewd │ │ ├── EFR32MG21_rtcc_interrupt.ewp │ │ ├── EFR32MG22_rtcc_interrupt.ewd │ │ ├── EFR32MG22_rtcc_interrupt.ewp │ │ ├── EFR32MG27_rtcc_interrupt.ewd │ │ ├── EFR32MG27_rtcc_interrupt.ewp │ │ └── rtcc_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_xg21.c │ │ └── main_xg2x.c ├── timer │ ├── timer_dma_edge_capture │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_dma_edge_capture.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_dma_edge_capture.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_dma_edge_capture.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_dma_edge_capture.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_dma_edge_capture.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_dma_edge_capture.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_dma_edge_capture.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_dma_edge_capture.ewd │ │ │ ├── EFR32FG25_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG21_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG21_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG22_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG22_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG24_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG24_timer_dma_edge_capture.ewp │ │ │ ├── EFR32MG27_timer_dma_edge_capture.ewd │ │ │ ├── EFR32MG27_timer_dma_edge_capture.ewp │ │ │ ├── EFR32ZG23_timer_dma_edge_capture.ewd │ │ │ ├── EFR32ZG23_timer_dma_edge_capture.ewp │ │ │ ├── EFR32ZG28_timer_dma_edge_capture.ewd │ │ │ ├── EFR32ZG28_timer_dma_edge_capture.ewp │ │ │ └── timer_dma_edge_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_frequency_generation │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_frequency_generation.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_frequency_generation.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_frequency_generation.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_frequency_generation.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_frequency_generation.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_frequency_generation.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_frequency_generation.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_frequency_generation.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_frequency_generation.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_frequency_generation.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_frequency_generation.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_frequency_generation.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_frequency_generation.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_frequency_generation.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_frequency_generation.ewd │ │ │ ├── EFR32FG25_timer_frequency_generation.ewp │ │ │ ├── EFR32MG21_timer_frequency_generation.ewd │ │ │ ├── EFR32MG21_timer_frequency_generation.ewp │ │ │ ├── EFR32MG22_timer_frequency_generation.ewd │ │ │ ├── EFR32MG22_timer_frequency_generation.ewp │ │ │ ├── EFR32MG24_timer_frequency_generation.ewd │ │ │ ├── EFR32MG24_timer_frequency_generation.ewp │ │ │ ├── EFR32MG27_timer_frequency_generation.ewd │ │ │ ├── EFR32MG27_timer_frequency_generation.ewp │ │ │ ├── EFR32ZG23_timer_frequency_generation.ewd │ │ │ ├── EFR32ZG23_timer_frequency_generation.ewp │ │ │ ├── EFR32ZG28_timer_frequency_generation.ewd │ │ │ ├── EFR32ZG28_timer_frequency_generation.ewp │ │ │ └── timer_frequency_generation.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_input_capture_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_input_capture_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_input_capture_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_input_capture_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_input_capture_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_input_capture_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_input_capture_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_input_capture_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32FG25_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG21_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG21_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG22_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG22_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG24_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG24_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32MG27_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32MG27_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32ZG23_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32ZG23_timer_input_capture_interrupt.ewp │ │ │ ├── EFR32ZG28_timer_input_capture_interrupt.ewd │ │ │ ├── EFR32ZG28_timer_input_capture_interrupt.ewp │ │ │ └── timer_input_capture_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main.c │ ├── timer_period_measurement_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_period_measurement_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_period_measurement_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_period_measurement_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_period_measurement_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_period_measurement_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_period_measurement_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32FG25_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG21_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG21_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG22_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG22_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG24_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG24_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32MG27_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32MG27_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32ZG23_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32ZG23_timer_period_measurement_interrupt.ewp │ │ │ ├── EFR32ZG28_timer_period_measurement_interrupt.ewd │ │ │ ├── EFR32ZG28_timer_period_measurement_interrupt.ewp │ │ │ └── timer_period_measurement_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_period_measurement_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_period_measurement_polled.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_period_measurement_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_period_measurement_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_period_measurement_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_period_measurement_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_period_measurement_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_period_measurement_polled.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_period_measurement_polled.ewd │ │ │ ├── EFR32FG25_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG21_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG21_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG22_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG22_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG24_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG24_timer_period_measurement_polled.ewp │ │ │ ├── EFR32MG27_timer_period_measurement_polled.ewd │ │ │ ├── EFR32MG27_timer_period_measurement_polled.ewp │ │ │ ├── EFR32ZG23_timer_period_measurement_polled.ewd │ │ │ ├── EFR32ZG23_timer_period_measurement_polled.ewp │ │ │ ├── EFR32ZG28_timer_period_measurement_polled.ewd │ │ │ ├── EFR32ZG28_timer_period_measurement_polled.ewp │ │ │ └── timer_period_measurement_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_pulse_capture │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_pulse_capture.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_pulse_capture.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_pulse_capture.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_pulse_capture.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_pulse_capture.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_pulse_capture.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_pulse_capture.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_pulse_capture.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_pulse_capture.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_pulse_capture.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_pulse_capture.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_pulse_capture.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_pulse_capture.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_pulse_capture.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_pulse_capture.ewd │ │ │ ├── EFR32FG25_timer_pulse_capture.ewp │ │ │ ├── EFR32MG21_timer_pulse_capture.ewd │ │ │ ├── EFR32MG21_timer_pulse_capture.ewp │ │ │ ├── EFR32MG22_timer_pulse_capture.ewd │ │ │ ├── EFR32MG22_timer_pulse_capture.ewp │ │ │ ├── EFR32MG24_timer_pulse_capture.ewd │ │ │ ├── EFR32MG24_timer_pulse_capture.ewp │ │ │ ├── EFR32MG27_timer_pulse_capture.ewd │ │ │ ├── EFR32MG27_timer_pulse_capture.ewp │ │ │ ├── EFR32ZG23_timer_pulse_capture.ewd │ │ │ ├── EFR32ZG23_timer_pulse_capture.ewp │ │ │ ├── EFR32ZG28_timer_pulse_capture.ewd │ │ │ ├── EFR32ZG28_timer_pulse_capture.ewp │ │ │ └── timer_pulse_capture.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_pwm_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_pwm_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_pwm_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_pwm_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_pwm_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_pwm_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_pwm_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_pwm_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_pwm_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_pwm_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_pwm_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_pwm_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_pwm_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_pwm_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_pwm_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_pwm_dma.ewd │ │ │ ├── EFR32FG25_timer_pwm_dma.ewp │ │ │ ├── EFR32MG21_timer_pwm_dma.ewd │ │ │ ├── EFR32MG21_timer_pwm_dma.ewp │ │ │ ├── EFR32MG22_timer_pwm_dma.ewd │ │ │ ├── EFR32MG22_timer_pwm_dma.ewp │ │ │ ├── EFR32MG24_timer_pwm_dma.ewd │ │ │ ├── EFR32MG24_timer_pwm_dma.ewp │ │ │ ├── EFR32MG27_timer_pwm_dma.ewd │ │ │ ├── EFR32MG27_timer_pwm_dma.ewp │ │ │ ├── EFR32ZG23_timer_pwm_dma.ewd │ │ │ ├── EFR32ZG23_timer_pwm_dma.ewp │ │ │ ├── EFR32ZG28_timer_pwm_dma.ewd │ │ │ ├── EFR32ZG28_timer_pwm_dma.ewp │ │ │ └── timer_pwm_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_pwm_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_pwm_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_pwm_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_pwm_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_pwm_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_pwm_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_pwm_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_pwm_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_pwm_interrupt.ewd │ │ │ ├── EFR32FG25_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG21_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG21_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG22_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG22_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG24_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG24_timer_pwm_interrupt.ewp │ │ │ ├── EFR32MG27_timer_pwm_interrupt.ewd │ │ │ ├── EFR32MG27_timer_pwm_interrupt.ewp │ │ │ ├── EFR32ZG23_timer_pwm_interrupt.ewd │ │ │ ├── EFR32ZG23_timer_pwm_interrupt.ewp │ │ │ ├── EFR32ZG28_timer_pwm_interrupt.ewd │ │ │ ├── EFR32ZG28_timer_pwm_interrupt.ewp │ │ │ └── timer_pwm_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_single_edge_output_compare │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_single_edge_output_compare.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_single_edge_output_compare.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_single_edge_output_compare.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_single_edge_output_compare.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_single_edge_output_compare.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_single_edge_output_compare.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_single_edge_output_compare.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32FG25_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG21_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG21_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG22_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG22_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG24_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG24_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32MG27_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32MG27_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32ZG23_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32ZG23_timer_single_edge_output_compare.ewp │ │ │ ├── EFR32ZG28_timer_single_edge_output_compare.ewd │ │ │ ├── EFR32ZG28_timer_single_edge_output_compare.ewp │ │ │ └── timer_single_edge_output_compare.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_single_pulse_generation_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_single_pulse_generation_dma.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_single_pulse_generation_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_single_pulse_generation_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_single_pulse_generation_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_single_pulse_generation_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_single_pulse_generation_dma.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32FG25_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG21_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG21_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG22_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG22_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG24_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG24_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32MG27_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32MG27_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32ZG23_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32ZG23_timer_single_pulse_generation_dma.ewp │ │ │ ├── EFR32ZG28_timer_single_pulse_generation_dma.ewd │ │ │ ├── EFR32ZG28_timer_single_pulse_generation_dma.ewp │ │ │ └── timer_single_pulse_generation_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ ├── timer_single_pulse_generation_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4181A_EFR32MG21_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_timer_single_pulse_generation_interrupt.slsproj │ │ │ ├── BRD4270B_EFR32FG25_timer_single_pulse_generation_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_timer_single_pulse_generation_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_timer_single_pulse_generation_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_timer_single_pulse_generation_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_timer_single_pulse_generation_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32FG25_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32FG25_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG21_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG21_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG22_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG22_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG24_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG24_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32MG27_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32MG27_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32ZG23_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32ZG23_timer_single_pulse_generation_interrupt.ewp │ │ │ ├── EFR32ZG28_timer_single_pulse_generation_interrupt.ewd │ │ │ ├── EFR32ZG28_timer_single_pulse_generation_interrupt.ewp │ │ │ └── timer_single_pulse_generation_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main.c │ │ │ └── main_xg28.c │ └── timer_single_pulse_generation_polled │ │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4182A_EFR32MG22_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4186C_EFR32MG24_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4194A_EFR32MG27_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_timer_single_pulse_generation_polled.slsproj │ │ ├── BRD4270B_EFR32FG25_timer_single_pulse_generation_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_timer_single_pulse_generation_polled.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG21_BRD4181A_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG22_BRD4182A_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG24_BRD4186C_timer_single_pulse_generation_polled.xml │ │ ├── EFR32MG27_BRD4194A_timer_single_pulse_generation_polled.xml │ │ ├── EFR32ZG23_BRD4204D_timer_single_pulse_generation_polled.xml │ │ └── EFR32ZG28_BRD4400C_timer_single_pulse_generation_polled.xml │ │ ├── iar │ │ ├── EFR32FG25_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32FG25_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG21_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG21_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG22_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG22_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG24_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG24_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32MG27_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32MG27_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32ZG23_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32ZG23_timer_single_pulse_generation_polled.ewp │ │ ├── EFR32ZG28_timer_single_pulse_generation_polled.ewd │ │ ├── EFR32ZG28_timer_single_pulse_generation_polled.ewp │ │ └── timer_single_pulse_generation_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main.c │ │ └── main_xg28.c ├── usart │ ├── async_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_async_interrupt.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_async_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_async_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_async_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_async_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_async_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_async_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_async_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_async_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_async_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_async_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_async_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_async_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_async_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_async_interrupt.ewd │ │ │ ├── EFR32MG21_usart_async_interrupt.ewp │ │ │ ├── EFR32MG22_usart_async_interrupt.ewd │ │ │ ├── EFR32MG22_usart_async_interrupt.ewp │ │ │ ├── EFR32MG24_usart_async_interrupt.ewd │ │ │ ├── EFR32MG24_usart_async_interrupt.ewp │ │ │ ├── EFR32MG27_usart_async_interrupt.ewd │ │ │ ├── EFR32MG27_usart_async_interrupt.ewp │ │ │ ├── EFR32ZG23_usart_async_interrupt.ewd │ │ │ ├── EFR32ZG23_usart_async_interrupt.ewp │ │ │ ├── EFR32ZG28_usart_async_interrupt.ewd │ │ │ ├── EFR32ZG28_usart_async_interrupt.ewp │ │ │ └── usart_async_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ └── main_xg21.c │ ├── async_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_async_polled.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_async_polled.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_async_polled.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_async_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_async_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_async_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_async_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_async_polled.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_async_polled.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_async_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_async_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_async_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_async_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_async_polled.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_async_polled.ewd │ │ │ ├── EFR32MG21_usart_async_polled.ewp │ │ │ ├── EFR32MG22_usart_async_polled.ewd │ │ │ ├── EFR32MG22_usart_async_polled.ewp │ │ │ ├── EFR32MG24_usart_async_polled.ewd │ │ │ ├── EFR32MG24_usart_async_polled.ewp │ │ │ ├── EFR32MG27_usart_async_polled.ewd │ │ │ ├── EFR32MG27_usart_async_polled.ewp │ │ │ ├── EFR32ZG23_usart_async_polled.ewd │ │ │ ├── EFR32ZG23_usart_async_polled.ewp │ │ │ ├── EFR32ZG28_usart_async_polled.ewd │ │ │ ├── EFR32ZG28_usart_async_polled.ewp │ │ │ └── usart_async_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ └── main_xg21.c │ ├── spi_main_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_spi_main_dma.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_spi_main_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_spi_main_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_spi_main_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_spi_main_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_spi_main_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_spi_main_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_spi_main_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_spi_main_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_spi_main_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_spi_main_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_spi_main_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_spi_main_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_spi_main_dma.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_spi_main_dma.ewd │ │ │ ├── EFR32MG21_usart_spi_main_dma.ewp │ │ │ ├── EFR32MG22_usart_spi_main_dma.ewd │ │ │ ├── EFR32MG22_usart_spi_main_dma.ewp │ │ │ ├── EFR32MG24_usart_spi_main_dma.ewd │ │ │ ├── EFR32MG24_usart_spi_main_dma.ewp │ │ │ ├── EFR32MG27_usart_spi_main_dma.ewd │ │ │ ├── EFR32MG27_usart_spi_main_dma.ewp │ │ │ ├── EFR32ZG23_usart_spi_main_dma.ewd │ │ │ ├── EFR32ZG23_usart_spi_main_dma.ewp │ │ │ ├── EFR32ZG28_usart_spi_main_dma.ewd │ │ │ ├── EFR32ZG28_usart_spi_main_dma.ewp │ │ │ └── usart_spi_main_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ ├── spi_main_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_spi_main_interrupt.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_spi_main_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_spi_main_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_spi_main_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_spi_main_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_spi_main_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_spi_main_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_spi_main_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_spi_main_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_spi_main_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_spi_main_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_spi_main_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_spi_main_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_spi_main_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG21_usart_spi_main_interrupt.ewp │ │ │ ├── EFR32MG22_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG22_usart_spi_main_interrupt.ewp │ │ │ ├── EFR32MG24_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG24_usart_spi_main_interrupt.ewp │ │ │ ├── EFR32MG27_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32MG27_usart_spi_main_interrupt.ewp │ │ │ ├── EFR32ZG23_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32ZG23_usart_spi_main_interrupt.ewp │ │ │ ├── EFR32ZG28_usart_spi_main_interrupt.ewd │ │ │ ├── EFR32ZG28_usart_spi_main_interrupt.ewp │ │ │ └── usart_spi_main_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ ├── spi_main_polled │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_spi_main_polled.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_spi_main_polled.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_spi_main_polled.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_spi_main_polled.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_spi_main_polled.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_spi_main_polled.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_spi_main_polled.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_spi_main_polled.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_spi_main_polled.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_spi_main_polled.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_spi_main_polled.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_spi_main_polled.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_spi_main_polled.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_spi_main_polled.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_spi_main_polled.ewd │ │ │ ├── EFR32MG21_usart_spi_main_polled.ewp │ │ │ ├── EFR32MG22_usart_spi_main_polled.ewd │ │ │ ├── EFR32MG22_usart_spi_main_polled.ewp │ │ │ ├── EFR32MG24_usart_spi_main_polled.ewd │ │ │ ├── EFR32MG24_usart_spi_main_polled.ewp │ │ │ ├── EFR32MG27_usart_spi_main_polled.ewd │ │ │ ├── EFR32MG27_usart_spi_main_polled.ewp │ │ │ ├── EFR32ZG23_usart_spi_main_polled.ewd │ │ │ ├── EFR32ZG23_usart_spi_main_polled.ewp │ │ │ ├── EFR32ZG28_usart_spi_main_polled.ewd │ │ │ ├── EFR32ZG28_usart_spi_main_polled.ewp │ │ │ └── usart_spi_main_polled.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ ├── spi_secondary_dma │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_spi_secondary_dma.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_spi_secondary_dma.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_spi_secondary_dma.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_spi_secondary_dma.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_spi_secondary_dma.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_spi_secondary_dma.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_spi_secondary_dma.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_spi_secondary_dma.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_spi_secondary_dma.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_spi_secondary_dma.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_spi_secondary_dma.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_spi_secondary_dma.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_spi_secondary_dma.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_spi_secondary_dma.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG21_usart_spi_secondary_dma.ewp │ │ │ ├── EFR32MG22_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG22_usart_spi_secondary_dma.ewp │ │ │ ├── EFR32MG24_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG24_usart_spi_secondary_dma.ewp │ │ │ ├── EFR32MG27_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32MG27_usart_spi_secondary_dma.ewp │ │ │ ├── EFR32ZG23_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32ZG23_usart_spi_secondary_dma.ewp │ │ │ ├── EFR32ZG28_usart_spi_secondary_dma.ewd │ │ │ ├── EFR32ZG28_usart_spi_secondary_dma.ewp │ │ │ └── usart_spi_secondary_dma.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ ├── spi_secondary_interrupt │ │ ├── SimplicityStudio │ │ │ ├── BRD4180A_EFR32MG21_usart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4181A_EFR32MG21_usart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4182A_EFR32MG22_usart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4186C_EFR32MG24_usart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4194A_EFR32MG27_usart_spi_secondary_interrupt.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_usart_spi_secondary_interrupt.slsproj │ │ │ └── BRD4400C_EFR32ZG28_usart_spi_secondary_interrupt.slsproj │ │ ├── doc │ │ │ ├── EFR32MG21_BRD4180A_usart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG21_BRD4181A_usart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG22_BRD4182A_usart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG24_BRD4186C_usart_spi_secondary_interrupt.xml │ │ │ ├── EFR32MG27_BRD4194A_usart_spi_secondary_interrupt.xml │ │ │ ├── EFR32ZG23_BRD4204D_usart_spi_secondary_interrupt.xml │ │ │ └── EFR32ZG28_BRD4400C_usart_spi_secondary_interrupt.xml │ │ ├── iar │ │ │ ├── EFR32MG21_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG21_usart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32MG22_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG22_usart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32MG24_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG24_usart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32MG27_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32MG27_usart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32ZG23_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32ZG23_usart_spi_secondary_interrupt.ewp │ │ │ ├── EFR32ZG28_usart_spi_secondary_interrupt.ewd │ │ │ ├── EFR32ZG28_usart_spi_secondary_interrupt.ewp │ │ │ └── usart_spi_secondary_interrupt.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_s2.c │ │ │ ├── main_xg21.c │ │ │ └── main_xg28.c │ └── spi_secondary_polled │ │ ├── SimplicityStudio │ │ ├── BRD4180A_EFR32MG21_usart_spi_secondary_polled.slsproj │ │ ├── BRD4181A_EFR32MG21_usart_spi_secondary_polled.slsproj │ │ ├── BRD4182A_EFR32MG22_usart_spi_secondary_polled.slsproj │ │ ├── BRD4186C_EFR32MG24_usart_spi_secondary_polled.slsproj │ │ ├── BRD4194A_EFR32MG27_usart_spi_secondary_polled.slsproj │ │ ├── BRD4204D_EFR32ZG23_usart_spi_secondary_polled.slsproj │ │ └── BRD4400C_EFR32ZG28_usart_spi_secondary_polled.slsproj │ │ ├── doc │ │ ├── EFR32MG21_BRD4180A_usart_spi_secondary_polled.xml │ │ ├── EFR32MG21_BRD4181A_usart_spi_secondary_polled.xml │ │ ├── EFR32MG22_BRD4182A_usart_spi_secondary_polled.xml │ │ ├── EFR32MG24_BRD4186C_usart_spi_secondary_polled.xml │ │ ├── EFR32MG27_BRD4194A_usart_spi_secondary_polled.xml │ │ ├── EFR32ZG23_BRD4204D_usart_spi_secondary_polled.xml │ │ └── EFR32ZG28_BRD4400C_usart_spi_secondary_polled.xml │ │ ├── iar │ │ ├── EFR32MG21_usart_spi_secondary_polled.ewd │ │ ├── EFR32MG21_usart_spi_secondary_polled.ewp │ │ ├── EFR32MG22_usart_spi_secondary_polled.ewd │ │ ├── EFR32MG22_usart_spi_secondary_polled.ewp │ │ ├── EFR32MG24_usart_spi_secondary_polled.ewd │ │ ├── EFR32MG24_usart_spi_secondary_polled.ewp │ │ ├── EFR32MG27_usart_spi_secondary_polled.ewd │ │ ├── EFR32MG27_usart_spi_secondary_polled.ewp │ │ ├── EFR32ZG23_usart_spi_secondary_polled.ewd │ │ ├── EFR32ZG23_usart_spi_secondary_polled.ewp │ │ ├── EFR32ZG28_usart_spi_secondary_polled.ewd │ │ ├── EFR32ZG28_usart_spi_secondary_polled.ewp │ │ └── usart_spi_secondary_polled.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_s2.c │ │ ├── main_xg21.c │ │ └── main_xg28.c ├── vdac │ ├── vdac_continuous │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_vdac_continuous.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_vdac_continuous.slsproj │ │ │ ├── BRD4270B_EFR32FG25_vdac_continuous.slsproj │ │ │ └── BRD4400C_EFR32ZG28_vdac_continuous.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_vdac_continuous.xml │ │ │ ├── EFR32MG24_BRD4186C_vdac_continuous.xml │ │ │ ├── EFR32ZG23_BRD4204D_vdac_continuous.xml │ │ │ └── EFR32ZG28_BRD4400C_vdac_continuous.xml │ │ ├── iar │ │ │ ├── EFR32FG25_vdac_continuous.ewd │ │ │ ├── EFR32FG25_vdac_continuous.ewp │ │ │ ├── EFR32MG24_vdac_continuous.ewd │ │ │ ├── EFR32MG24_vdac_continuous.ewp │ │ │ ├── EFR32ZG23_vdac_continuous.ewd │ │ │ ├── EFR32ZG23_vdac_continuous.ewp │ │ │ ├── EFR32ZG28_vdac_continuous.ewd │ │ │ ├── EFR32ZG28_vdac_continuous.ewp │ │ │ └── vdac_continuous.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_vdac_continuous.c │ ├── vdac_differential │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_vdac_differential.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_vdac_differential.slsproj │ │ │ ├── BRD4270B_EFR32FG25_vdac_differential.slsproj │ │ │ └── BRD4400C_EFR32ZG28_vdac_differential.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_vdac_differential.xml │ │ │ ├── EFR32MG24_BRD4186C_vdac_differential.xml │ │ │ ├── EFR32ZG23_BRD4204D_vdac_differential.xml │ │ │ └── EFR32ZG28_BRD4400C_vdac_differential.xml │ │ ├── iar │ │ │ ├── EFR32FG25_vdac_differential.ewd │ │ │ ├── EFR32FG25_vdac_differential.ewp │ │ │ ├── EFR32MG24_vdac_differential.ewd │ │ │ ├── EFR32MG24_vdac_differential.ewp │ │ │ ├── EFR32ZG23_vdac_differential.ewd │ │ │ ├── EFR32ZG23_vdac_differential.ewp │ │ │ ├── EFR32ZG28_vdac_differential.ewd │ │ │ ├── EFR32ZG28_vdac_differential.ewp │ │ │ └── vdac_differential.eww │ │ ├── readme.txt │ │ └── src │ │ │ └── main_vdac_differential.c │ ├── vdac_sample_off │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_vdac_sample_off.slsproj │ │ │ ├── BRD4270B_EFR32FG25_vdac_sample_off.slsproj │ │ │ └── BRD4400C_EFR32ZG28_vdac_sample_off.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_vdac_sample_off.xml │ │ │ ├── EFR32MG24_BRD4186C_vdac_sample_off.xml │ │ │ └── EFR32ZG28_BRD4400C_vdac_sample_off.xml │ │ ├── iar │ │ │ ├── EFR32FG25_vdac_sample_off.ewd │ │ │ ├── EFR32FG25_vdac_sample_off.ewp │ │ │ ├── EFR32MG24_vdac_sample_off.ewd │ │ │ ├── EFR32MG24_vdac_sample_off.ewp │ │ │ ├── EFR32ZG28_vdac_sample_off.ewd │ │ │ ├── EFR32ZG28_vdac_sample_off.ewp │ │ │ └── vdac_sample_off.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_vdac_sample_off.c │ │ │ └── main_vdac_sample_off_xg25.c │ ├── vdac_sine_wave_synch │ │ ├── SimplicityStudio │ │ │ ├── BRD4186C_EFR32MG24_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4204D_EFR32ZG23_vdac_sine_wave_synch.slsproj │ │ │ ├── BRD4270B_EFR32FG25_vdac_sine_wave_synch.slsproj │ │ │ └── BRD4400C_EFR32ZG28_vdac_sine_wave_synch.slsproj │ │ ├── doc │ │ │ ├── EFR32FG25_BRD4270B_vdac_sine_wave_synch.xml │ │ │ ├── EFR32MG24_BRD4186C_vdac_sine_wave_synch.xml │ │ │ ├── EFR32ZG23_BRD4204D_vdac_sine_wave_synch.xml │ │ │ └── EFR32ZG28_BRD4400C_vdac_sine_wave_synch.xml │ │ ├── iar │ │ │ ├── EFR32FG25_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32FG25_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32MG24_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32MG24_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32ZG23_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32ZG23_vdac_sine_wave_synch.ewp │ │ │ ├── EFR32ZG28_vdac_sine_wave_synch.ewd │ │ │ ├── EFR32ZG28_vdac_sine_wave_synch.ewp │ │ │ └── vdac_sine_wave_synch.eww │ │ ├── readme.txt │ │ └── src │ │ │ ├── main_vdac_sine_wave_synch.c │ │ │ └── main_vdac_sine_wave_synch_xg25.c │ └── vdac_timer_dma_waveform │ │ ├── SimplicityStudio │ │ ├── BRD4186C_EFR32MG24_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4204D_EFR32ZG23_vdac_timer_dma_waveform.slsproj │ │ ├── BRD4270B_EFR32FG25_vdac_timer_dma_waveform.slsproj │ │ └── BRD4400C_EFR32ZG28_vdac_timer_dma_waveform.slsproj │ │ ├── doc │ │ ├── EFR32FG25_BRD4270B_vdac_timer_dma_waveform.xml │ │ ├── EFR32MG24_BRD4186C_vdac_timer_dma_waveform.xml │ │ ├── EFR32ZG23_BRD4204D_vdac_timer_dma_waveform.xml │ │ └── EFR32ZG28_BRD4400C_vdac_timer_dma_waveform.xml │ │ ├── iar │ │ ├── EFR32FG25_vdac_timer_dma_waveform.ewd │ │ ├── EFR32FG25_vdac_timer_dma_waveform.ewp │ │ ├── EFR32MG24_vdac_timer_dma_waveform.ewd │ │ ├── EFR32MG24_vdac_timer_dma_waveform.ewp │ │ ├── EFR32ZG23_vdac_timer_dma_waveform.ewd │ │ ├── EFR32ZG23_vdac_timer_dma_waveform.ewp │ │ ├── EFR32ZG28_vdac_timer_dma_waveform.ewd │ │ ├── EFR32ZG28_vdac_timer_dma_waveform.ewp │ │ └── vdac_timer_dma_waveform.eww │ │ ├── readme.txt │ │ └── src │ │ ├── main_vdac_timer_dma_waveform.c │ │ └── main_vdac_timer_dma_waveform_xg25.c └── wdog │ ├── wdog_prs_clear │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_wdog_prs_clear.slsproj │ │ ├── BRD4182A_EFR32MG22_wdog_prs_clear.slsproj │ │ ├── BRD4186C_EFR32MG24_wdog_prs_clear.slsproj │ │ ├── BRD4194A_EFR32MG27_wdog_prs_clear.slsproj │ │ ├── BRD4204D_EFR32ZG23_wdog_prs_clear.slsproj │ │ ├── BRD4270B_EFR32FG25_wdog_prs_clear.slsproj │ │ └── BRD4400C_EFR32ZG28_wdog_prs_clear.slsproj │ ├── doc │ │ ├── EFR32FG25_BRD4270B_wdog_prs_clear.xml │ │ ├── EFR32MG21_BRD4181A_wdog_prs_clear.xml │ │ ├── EFR32MG22_BRD4182A_wdog_prs_clear.xml │ │ ├── EFR32MG24_BRD4186C_wdog_prs_clear.xml │ │ ├── EFR32MG27_BRD4194A_wdog_prs_clear.xml │ │ ├── EFR32ZG23_BRD4204D_wdog_prs_clear.xml │ │ └── EFR32ZG28_BRD4400C_wdog_prs_clear.xml │ ├── iar │ │ ├── EFR32FG25_wdog_prs_clear.ewd │ │ ├── EFR32FG25_wdog_prs_clear.ewp │ │ ├── EFR32MG21_wdog_prs_clear.ewd │ │ ├── EFR32MG21_wdog_prs_clear.ewp │ │ ├── EFR32MG22_wdog_prs_clear.ewd │ │ ├── EFR32MG22_wdog_prs_clear.ewp │ │ ├── EFR32MG24_wdog_prs_clear.ewd │ │ ├── EFR32MG24_wdog_prs_clear.ewp │ │ ├── EFR32MG27_wdog_prs_clear.ewd │ │ ├── EFR32MG27_wdog_prs_clear.ewp │ │ ├── EFR32ZG23_wdog_prs_clear.ewd │ │ ├── EFR32ZG23_wdog_prs_clear.ewp │ │ ├── EFR32ZG28_wdog_prs_clear.ewd │ │ ├── EFR32ZG28_wdog_prs_clear.ewp │ │ └── wdog_prs_clear.eww │ ├── readme.txt │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ ├── main_xg27.c │ │ └── main_xg28.c │ ├── wdog_prs_monitor │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_wdog_prs_monitor.slsproj │ │ ├── BRD4182A_EFR32MG22_wdog_prs_monitor.slsproj │ │ ├── BRD4186C_EFR32MG24_wdog_prs_monitor.slsproj │ │ ├── BRD4194A_EFR32MG27_wdog_prs_monitor.slsproj │ │ ├── BRD4204D_EFR32ZG23_wdog_prs_monitor.slsproj │ │ ├── BRD4270B_EFR32FG25_wdog_prs_monitor.slsproj │ │ └── BRD4400C_EFR32ZG28_wdog_prs_monitor.slsproj │ ├── doc │ │ ├── EFR32FG25_BRD4270B_wdog_prs_monitor.xml │ │ ├── EFR32MG21_BRD4181A_wdog_prs_monitor.xml │ │ ├── EFR32MG22_BRD4182A_wdog_prs_monitor.xml │ │ ├── EFR32MG24_BRD4186C_wdog_prs_monitor.xml │ │ ├── EFR32MG27_BRD4194A_wdog_prs_monitor.xml │ │ ├── EFR32ZG23_BRD4204D_wdog_prs_monitor.xml │ │ └── EFR32ZG28_BRD4400C_wdog_prs_monitor.xml │ ├── iar │ │ ├── EFR32FG25_wdog_prs_monitor.ewd │ │ ├── EFR32FG25_wdog_prs_monitor.ewp │ │ ├── EFR32MG21_wdog_prs_monitor.ewd │ │ ├── EFR32MG21_wdog_prs_monitor.ewp │ │ ├── EFR32MG22_wdog_prs_monitor.ewd │ │ ├── EFR32MG22_wdog_prs_monitor.ewp │ │ ├── EFR32MG24_wdog_prs_monitor.ewd │ │ ├── EFR32MG24_wdog_prs_monitor.ewp │ │ ├── EFR32MG27_wdog_prs_monitor.ewd │ │ ├── EFR32MG27_wdog_prs_monitor.ewp │ │ ├── EFR32ZG23_wdog_prs_monitor.ewd │ │ ├── EFR32ZG23_wdog_prs_monitor.ewp │ │ ├── EFR32ZG28_wdog_prs_monitor.ewd │ │ ├── EFR32ZG28_wdog_prs_monitor.ewp │ │ └── wdog_prs_monitor.eww │ ├── readme.txt │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ ├── main_xg27.c │ │ └── main_xg28.c │ ├── wdog_timeout_interrupt │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_wdog_timeout_interrupt.slsproj │ │ ├── BRD4182A_EFR32MG22_wdog_timeout_interrupt.slsproj │ │ ├── BRD4186C_EFR32MG24_wdog_timeout_interrupt.slsproj │ │ ├── BRD4194A_EFR32MG27_wdog_timeout_interrupt.slsproj │ │ ├── BRD4204D_EFR32ZG23_wdog_timeout_interrupt.slsproj │ │ ├── BRD4270B_EFR32FG25_wdog_timeout_interrupt.slsproj │ │ └── BRD4400C_EFR32ZG28_wdog_timeout_interrupt.slsproj │ ├── doc │ │ ├── EFR32FG25_BRD4270B_wdog_timeout_interrupt.xml │ │ ├── EFR32MG21_BRD4181A_wdog_timeout_interrupt.xml │ │ ├── EFR32MG22_BRD4182A_wdog_timeout_interrupt.xml │ │ ├── EFR32MG24_BRD4186C_wdog_timeout_interrupt.xml │ │ ├── EFR32MG27_BRD4194A_wdog_timeout_interrupt.xml │ │ ├── EFR32ZG23_BRD4204D_wdog_timeout_interrupt.xml │ │ └── EFR32ZG28_BRD4400C_wdog_timeout_interrupt.xml │ ├── iar │ │ ├── EFR32FG25_wdog_timeout_interrupt.ewd │ │ ├── EFR32FG25_wdog_timeout_interrupt.ewp │ │ ├── EFR32MG21_wdog_timeout_interrupt.ewd │ │ ├── EFR32MG21_wdog_timeout_interrupt.ewp │ │ ├── EFR32MG22_wdog_timeout_interrupt.ewd │ │ ├── EFR32MG22_wdog_timeout_interrupt.ewp │ │ ├── EFR32MG24_wdog_timeout_interrupt.ewd │ │ ├── EFR32MG24_wdog_timeout_interrupt.ewp │ │ ├── EFR32MG27_wdog_timeout_interrupt.ewd │ │ ├── EFR32MG27_wdog_timeout_interrupt.ewp │ │ ├── EFR32ZG23_wdog_timeout_interrupt.ewd │ │ ├── EFR32ZG23_wdog_timeout_interrupt.ewp │ │ ├── EFR32ZG28_wdog_timeout_interrupt.ewd │ │ ├── EFR32ZG28_wdog_timeout_interrupt.ewp │ │ └── wdog_timeout_interrupt.eww │ ├── readme.txt │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg27.c │ ├── wdog_timeout_reset │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_wdog_timeout_reset.slsproj │ │ ├── BRD4182A_EFR32MG22_wdog_timeout_reset.slsproj │ │ ├── BRD4186C_EFR32MG24_wdog_timeout_reset.slsproj │ │ ├── BRD4194A_EFR32MG27_wdog_timeout_reset.slsproj │ │ ├── BRD4204D_EFR32ZG23_wdog_timeout_reset.slsproj │ │ ├── BRD4270B_EFR32FG25_wdog_timeout_reset.slsproj │ │ └── BRD4400C_EFR32ZG28_wdog_timeout_reset.slsproj │ ├── doc │ │ ├── EFR32FG25_BRD4270B_wdog_timeout_reset.xml │ │ ├── EFR32MG21_BRD4181A_wdog_timeout_reset.xml │ │ ├── EFR32MG22_BRD4182A_wdog_timeout_reset.xml │ │ ├── EFR32MG24_BRD4186C_wdog_timeout_reset.xml │ │ ├── EFR32MG27_BRD4194A_wdog_timeout_reset.xml │ │ ├── EFR32ZG23_BRD4204D_wdog_timeout_reset.xml │ │ └── EFR32ZG28_BRD4400C_wdog_timeout_reset.xml │ ├── iar │ │ ├── EFR32FG25_wdog_timeout_reset.ewd │ │ ├── EFR32FG25_wdog_timeout_reset.ewp │ │ ├── EFR32MG21_wdog_timeout_reset.ewd │ │ ├── EFR32MG21_wdog_timeout_reset.ewp │ │ ├── EFR32MG22_wdog_timeout_reset.ewd │ │ ├── EFR32MG22_wdog_timeout_reset.ewp │ │ ├── EFR32MG24_wdog_timeout_reset.ewd │ │ ├── EFR32MG24_wdog_timeout_reset.ewp │ │ ├── EFR32MG27_wdog_timeout_reset.ewd │ │ ├── EFR32MG27_wdog_timeout_reset.ewp │ │ ├── EFR32ZG23_wdog_timeout_reset.ewd │ │ ├── EFR32ZG23_wdog_timeout_reset.ewp │ │ ├── EFR32ZG28_wdog_timeout_reset.ewd │ │ ├── EFR32ZG28_wdog_timeout_reset.ewp │ │ └── wdog_timeout_reset.eww │ ├── readme.txt │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg27.c │ ├── wdog_warning_interrupt │ ├── SimplicityStudio │ │ ├── BRD4181A_EFR32MG21_wdog_warning_interrupt.slsproj │ │ ├── BRD4182A_EFR32MG22_wdog_warning_interrupt.slsproj │ │ ├── BRD4186C_EFR32MG24_wdog_warning_interrupt.slsproj │ │ ├── BRD4194A_EFR32MG27_wdog_warning_interrupt.slsproj │ │ ├── BRD4204D_EFR32ZG23_wdog_warning_interrupt.slsproj │ │ ├── BRD4270B_EFR32FG25_wdog_warning_interrupt.slsproj │ │ └── BRD4400C_EFR32ZG28_wdog_warning_interrupt.slsproj │ ├── doc │ │ ├── EFR32FG25_BRD4270B_wdog_warning_interrupt.xml │ │ ├── EFR32MG21_BRD4181A_wdog_warning_interrupt.xml │ │ ├── EFR32MG22_BRD4182A_wdog_warning_interrupt.xml │ │ ├── EFR32MG24_BRD4186C_wdog_warning_interrupt.xml │ │ ├── EFR32MG27_BRD4194A_wdog_warning_interrupt.xml │ │ ├── EFR32ZG23_BRD4204D_wdog_warning_interrupt.xml │ │ └── EFR32ZG28_BRD4400C_wdog_warning_interrupt.xml │ ├── iar │ │ ├── EFR32FG25_wdog_warning_interrupt.ewd │ │ ├── EFR32FG25_wdog_warning_interrupt.ewp │ │ ├── EFR32MG21_wdog_warning_interrupt.ewd │ │ ├── EFR32MG21_wdog_warning_interrupt.ewp │ │ ├── EFR32MG22_wdog_warning_interrupt.ewd │ │ ├── EFR32MG22_wdog_warning_interrupt.ewp │ │ ├── EFR32MG24_wdog_warning_interrupt.ewd │ │ ├── EFR32MG24_wdog_warning_interrupt.ewp │ │ ├── EFR32MG27_wdog_warning_interrupt.ewd │ │ ├── EFR32MG27_wdog_warning_interrupt.ewp │ │ ├── EFR32ZG23_wdog_warning_interrupt.ewd │ │ ├── EFR32ZG23_wdog_warning_interrupt.ewp │ │ ├── EFR32ZG28_wdog_warning_interrupt.ewd │ │ ├── EFR32ZG28_wdog_warning_interrupt.ewp │ │ └── wdog_warning_interrupt.eww │ ├── readme.txt │ └── src │ │ ├── main.c │ │ ├── main_xg21.c │ │ └── main_xg27.c │ └── wdog_window_interrupt │ ├── SimplicityStudio │ ├── BRD4181A_EFR32MG21_wdog_window_interrupt.slsproj │ ├── BRD4182A_EFR32MG22_wdog_window_interrupt.slsproj │ ├── BRD4186C_EFR32MG24_wdog_window_interrupt.slsproj │ ├── BRD4194A_EFR32MG27_wdog_window_interrupt.slsproj │ ├── BRD4204D_EFR32ZG23_wdog_window_interrupt.slsproj │ ├── BRD4270B_EFR32FG25_wdog_window_interrupt.slsproj │ └── BRD4400C_EFR32ZG28_wdog_window_interrupt.slsproj │ ├── doc │ ├── EFR32FG25_BRD4270B_wdog_window_interrupt.xml │ ├── EFR32MG21_BRD4181A_wdog_window_interrupt.xml │ ├── EFR32MG22_BRD4182A_wdog_window_interrupt.xml │ ├── EFR32MG24_BRD4186C_wdog_window_interrupt.xml │ ├── EFR32MG27_BRD4194A_wdog_window_interrupt.xml │ ├── EFR32ZG23_BRD4204D_wdog_window_interrupt.xml │ └── EFR32ZG28_BRD4400C_wdog_window_interrupt.xml │ ├── iar │ ├── EFR32FG25_wdog_window_interrupt.ewd │ ├── EFR32FG25_wdog_window_interrupt.ewp │ ├── EFR32MG21_wdog_window_interrupt.ewd │ ├── EFR32MG21_wdog_window_interrupt.ewp │ ├── EFR32MG22_wdog_window_interrupt.ewd │ ├── EFR32MG22_wdog_window_interrupt.ewp │ ├── EFR32MG24_wdog_window_interrupt.ewd │ ├── EFR32MG24_wdog_window_interrupt.ewp │ ├── EFR32MG27_wdog_window_interrupt.ewd │ ├── EFR32MG27_wdog_window_interrupt.ewp │ ├── EFR32ZG23_wdog_window_interrupt.ewd │ ├── EFR32ZG23_wdog_window_interrupt.ewp │ ├── EFR32ZG28_wdog_window_interrupt.ewd │ ├── EFR32ZG28_wdog_window_interrupt.ewp │ └── wdog_window_interrupt.eww │ ├── readme.txt │ └── src │ ├── main.c │ ├── main_xg21.c │ └── main_xg27.c └── templates.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/.github/workflows/github.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/README.md -------------------------------------------------------------------------------- /series0/acmp/acmp_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/acmp/acmp_interrupt/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_interrupt/src/main_s0.c -------------------------------------------------------------------------------- /series0/acmp/acmp_interrupt/src/main_s0_pc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_interrupt/src/main_s0_pc4.c -------------------------------------------------------------------------------- /series0/acmp/acmp_pin_output/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_pin_output/readme.txt -------------------------------------------------------------------------------- /series0/acmp/acmp_pin_output/src/main_gecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_pin_output/src/main_gecko.c -------------------------------------------------------------------------------- /series0/acmp/acmp_pin_output/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_pin_output/src/main_s0.c -------------------------------------------------------------------------------- /series0/acmp/acmp_pin_output/src/main_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_pin_output/src/main_tg.c -------------------------------------------------------------------------------- /series0/acmp/acmp_pin_output/src/main_zg_hg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_pin_output/src/main_zg_hg.c -------------------------------------------------------------------------------- /series0/acmp/acmp_polled/iar/acmp_polled.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_polled/iar/acmp_polled.eww -------------------------------------------------------------------------------- /series0/acmp/acmp_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_polled/readme.txt -------------------------------------------------------------------------------- /series0/acmp/acmp_polled/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_polled/src/main_s0.c -------------------------------------------------------------------------------- /series0/acmp/acmp_polled/src/main_s0_pc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/acmp/acmp_polled/src/main_s0_pc4.c -------------------------------------------------------------------------------- /series0/adc/adc_scan_letimer_prs_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_scan_letimer_prs_dma/readme.txt -------------------------------------------------------------------------------- /series0/adc/adc_scan_prs_gpio_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_scan_prs_gpio_dma/readme.txt -------------------------------------------------------------------------------- /series0/adc/adc_scan_prs_gpio_dma/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_scan_prs_gpio_dma/src/main_s0.c -------------------------------------------------------------------------------- /series0/adc/adc_single_diff_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_diff_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/adc/adc_single_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/adc/adc_single_interrupt/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_interrupt/src/main_s0.c -------------------------------------------------------------------------------- /series0/adc/adc_single_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_polled/readme.txt -------------------------------------------------------------------------------- /series0/adc/adc_single_polled/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_polled/src/main_s0.c -------------------------------------------------------------------------------- /series0/adc/adc_single_prs_gpio_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/adc/adc_single_prs_gpio_dma/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_cbc_128/iar/aes_cbc_128.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_128/iar/aes_cbc_128.eww -------------------------------------------------------------------------------- /series0/aes/aes_cbc_128/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_128/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_cbc_128/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_128/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_cbc_256/iar/aes_cbc_256.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_256/iar/aes_cbc_256.eww -------------------------------------------------------------------------------- /series0/aes/aes_cbc_256/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_256/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_cbc_256/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cbc_256/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_cfb_128/iar/aes_cfb_128.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_128/iar/aes_cfb_128.eww -------------------------------------------------------------------------------- /series0/aes/aes_cfb_128/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_128/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_cfb_128/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_128/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_cfb_256/iar/aes_cfb_256.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_256/iar/aes_cfb_256.eww -------------------------------------------------------------------------------- /series0/aes/aes_cfb_256/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_256/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_cfb_256/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_cfb_256/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ctr_128/iar/aes_ctr_128.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_128/iar/aes_ctr_128.eww -------------------------------------------------------------------------------- /series0/aes/aes_ctr_128/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_128/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ctr_128/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_128/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ctr_256/iar/aes_ctr_256.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_256/iar/aes_ctr_256.eww -------------------------------------------------------------------------------- /series0/aes/aes_ctr_256/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_256/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ctr_256/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ctr_256/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ecb_128/iar/aes_ecb_128.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_128/iar/aes_ecb_128.eww -------------------------------------------------------------------------------- /series0/aes/aes_ecb_128/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_128/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ecb_128/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_128/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ecb_256/iar/aes_ecb_256.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_256/iar/aes_ecb_256.eww -------------------------------------------------------------------------------- /series0/aes/aes_ecb_256/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_256/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ecb_256/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ecb_256/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ofb_128/iar/aes_ofb_128.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_128/iar/aes_ofb_128.eww -------------------------------------------------------------------------------- /series0/aes/aes_ofb_128/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_128/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ofb_128/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_128/src/main_s0.c -------------------------------------------------------------------------------- /series0/aes/aes_ofb_256/iar/aes_ofb_256.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_256/iar/aes_ofb_256.eww -------------------------------------------------------------------------------- /series0/aes/aes_ofb_256/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_256/readme.txt -------------------------------------------------------------------------------- /series0/aes/aes_ofb_256/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/aes/aes_ofb_256/src/main_s0.c -------------------------------------------------------------------------------- /series0/burtc/burtc_backup_domain/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/burtc/burtc_backup_domain/readme.txt -------------------------------------------------------------------------------- /series0/burtc/burtc_backup_domain/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/burtc/burtc_backup_domain/src/main.c -------------------------------------------------------------------------------- /series0/dac/dac_voltage/iar/dac_voltage.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dac/dac_voltage/iar/dac_voltage.eww -------------------------------------------------------------------------------- /series0/dac/dac_voltage/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dac/dac_voltage/readme.txt -------------------------------------------------------------------------------- /series0/dac/dac_voltage/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dac/dac_voltage/src/main.c -------------------------------------------------------------------------------- /series0/dma/2d_copy/doc/EFM32GG_dma_2d_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/doc/EFM32GG_dma_2d_copy.xml -------------------------------------------------------------------------------- /series0/dma/2d_copy/doc/EFM32LG_dma_2d_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/doc/EFM32LG_dma_2d_copy.xml -------------------------------------------------------------------------------- /series0/dma/2d_copy/doc/EFM32WG_dma_2d_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/doc/EFM32WG_dma_2d_copy.xml -------------------------------------------------------------------------------- /series0/dma/2d_copy/iar/EFM32GG_dma_2d_copy.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/iar/EFM32GG_dma_2d_copy.ewd -------------------------------------------------------------------------------- /series0/dma/2d_copy/iar/ldma_2d_copy.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/iar/ldma_2d_copy.eww -------------------------------------------------------------------------------- /series0/dma/2d_copy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/readme.txt -------------------------------------------------------------------------------- /series0/dma/2d_copy/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/2d_copy/src/main.c -------------------------------------------------------------------------------- /series0/dma/linked_list/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/linked_list/readme.txt -------------------------------------------------------------------------------- /series0/dma/linked_list/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/linked_list/src/main.c -------------------------------------------------------------------------------- /series0/dma/linked_list_looped/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/linked_list_looped/readme.txt -------------------------------------------------------------------------------- /series0/dma/linked_list_looped/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/linked_list_looped/src/main.c -------------------------------------------------------------------------------- /series0/dma/ping_pong/iar/ldma_ping_pong.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/ping_pong/iar/ldma_ping_pong.eww -------------------------------------------------------------------------------- /series0/dma/ping_pong/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/ping_pong/readme.txt -------------------------------------------------------------------------------- /series0/dma/ping_pong/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/ping_pong/src/main.c -------------------------------------------------------------------------------- /series0/dma/scatter_gather/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/scatter_gather/readme.txt -------------------------------------------------------------------------------- /series0/dma/scatter_gather/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/scatter_gather/src/main.c -------------------------------------------------------------------------------- /series0/dma/single_button/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_button/readme.txt -------------------------------------------------------------------------------- /series0/dma/single_button/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_button/src/main.c -------------------------------------------------------------------------------- /series0/dma/single_looped/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_looped/readme.txt -------------------------------------------------------------------------------- /series0/dma/single_looped/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_looped/src/main.c -------------------------------------------------------------------------------- /series0/dma/single_software/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_software/readme.txt -------------------------------------------------------------------------------- /series0/dma/single_software/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/dma/single_software/src/main.c -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/iar/EM4_WakeUp.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/iar/EM4_WakeUp.eww -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/readme_g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/readme_g.txt -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/readme_gg_wg_lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/readme_gg_wg_lg.txt -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/readme_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/readme_hg.txt -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/readme_tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/readme_tg.txt -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/readme_zg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/readme_zg.txt -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/src/main_g.c -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/src/main_gg_wg_lg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/src/main_gg_wg_lg.c -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/src/main_hg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/src/main_hg.c -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/src/main_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/src/main_tg.c -------------------------------------------------------------------------------- /series0/gpio/EM4_WakeUp/src/main_zg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/EM4_WakeUp/src/main_zg.c -------------------------------------------------------------------------------- /series0/gpio/gpio_conf/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_conf/iar/gpio.eww -------------------------------------------------------------------------------- /series0/gpio/gpio_conf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_conf/readme.txt -------------------------------------------------------------------------------- /series0/gpio/gpio_conf/src/main_gpio_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_conf/src/main_gpio_conf.c -------------------------------------------------------------------------------- /series0/gpio/gpio_periph/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_periph/iar/gpio.eww -------------------------------------------------------------------------------- /series0/gpio/gpio_periph/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_periph/readme.txt -------------------------------------------------------------------------------- /series0/gpio/gpio_periph/readme_m0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_periph/readme_m0.txt -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/doc/EFM32G_gpio_prs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/doc/EFM32G_gpio_prs.xml -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/iar/EFM32G_gpio_prs.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/iar/EFM32G_gpio_prs.ewd -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/iar/EFM32G_gpio_prs.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/iar/EFM32G_gpio_prs.ewp -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/iar/gpio.eww -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/readme.txt -------------------------------------------------------------------------------- /series0/gpio/gpio_prs/src/main_gpio_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/gpio_prs/src/main_gpio_prs.c -------------------------------------------------------------------------------- /series0/gpio/switch_led_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/switch_led_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/gpio/switch_led_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/switch_led_polled/readme.txt -------------------------------------------------------------------------------- /series0/gpio/switch_led_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/gpio/switch_led_polled/src/main.c -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32GG_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32GG_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32G_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32G_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32HG_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32HG_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32LG_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32LG_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32WG_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32WG_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/doc/EFM32ZG_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/doc/EFM32ZG_i2c.xml -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32GG_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32GG_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32GG_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32GG_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32G_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32G_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32G_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32G_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32HG_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32HG_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32HG_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32HG_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32LG_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32LG_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32LG_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32LG_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32WG_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32WG_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32WG_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32WG_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32ZG_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32ZG_i2c.ewd -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/EFM32ZG_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/EFM32ZG_i2c.ewp -------------------------------------------------------------------------------- /series0/i2c/i2c/iar/i2c.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/iar/i2c.eww -------------------------------------------------------------------------------- /series0/i2c/i2c/readme_g8xx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/readme_g8xx.txt -------------------------------------------------------------------------------- /series0/i2c/i2c/readme_gg_lg_wg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/readme_gg_lg_wg.txt -------------------------------------------------------------------------------- /series0/i2c/i2c/readme_zg_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/readme_zg_hg.txt -------------------------------------------------------------------------------- /series0/i2c/i2c/src/main_g8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/src/main_g8xx.c -------------------------------------------------------------------------------- /series0/i2c/i2c/src/main_gg_lg_wg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/src/main_gg_lg_wg.c -------------------------------------------------------------------------------- /series0/i2c/i2c/src/main_zg_hg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/i2c/i2c/src/main_zg_hg.c -------------------------------------------------------------------------------- /series0/idac/idac_output_constant/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/idac/idac_output_constant/readme.txt -------------------------------------------------------------------------------- /series0/idac/idac_timer_prs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/idac/idac_timer_prs/readme.txt -------------------------------------------------------------------------------- /series0/idac/idac_timer_prs/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/idac/idac_timer_prs/src/main_s0.c -------------------------------------------------------------------------------- /series0/letimer/pulse_train/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/letimer/pulse_train/readme.txt -------------------------------------------------------------------------------- /series0/letimer/pulse_train/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/letimer/pulse_train/src/main_s0.c -------------------------------------------------------------------------------- /series0/leuart/leuart_dma/iar/leuart_dma.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_dma/iar/leuart_dma.eww -------------------------------------------------------------------------------- /series0/leuart/leuart_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_dma/readme.txt -------------------------------------------------------------------------------- /series0/leuart/leuart_dma/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_dma/src/main_s0.c -------------------------------------------------------------------------------- /series0/leuart/leuart_echo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_echo/readme.txt -------------------------------------------------------------------------------- /series0/leuart/leuart_echo/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_echo/src/main_s0.c -------------------------------------------------------------------------------- /series0/leuart/leuart_half_duplex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/leuart/leuart_half_duplex/readme.txt -------------------------------------------------------------------------------- /series0/msc/debug_lock/iar/debug_lock.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/debug_lock/iar/debug_lock.eww -------------------------------------------------------------------------------- /series0/msc/debug_lock/readme_resetn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/debug_lock/readme_resetn.txt -------------------------------------------------------------------------------- /series0/msc/debug_lock/src/main_resetn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/debug_lock/src/main_resetn.c -------------------------------------------------------------------------------- /series0/msc/debug_lock/test/test_M0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/debug_lock/test/test_M0.bat -------------------------------------------------------------------------------- /series0/msc/debug_lock/test/test_M3-M4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/debug_lock/test/test_M3-M4.bat -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32GG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32GG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32G_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32G_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32HG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32HG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32LG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32LG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32TG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32TG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32WG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32WG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/doc/EFM32ZG_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/doc/EFM32ZG_msc_rw.xml -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32GG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32GG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32GG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32GG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32G_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32G_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32G_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32G_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32HG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32HG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32HG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32HG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32LG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32LG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32LG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32LG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32TG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32TG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32TG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32TG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32WG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32WG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32WG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32WG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32ZG_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32ZG_msc_rw.ewd -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/EFM32ZG_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/EFM32ZG_msc_rw.ewp -------------------------------------------------------------------------------- /series0/msc/msc_rw/iar/msc_rw.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/iar/msc_rw.eww -------------------------------------------------------------------------------- /series0/msc/msc_rw/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/readme.txt -------------------------------------------------------------------------------- /series0/msc/msc_rw/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/msc/msc_rw/src/main.c -------------------------------------------------------------------------------- /series0/opamp/opamp_dac_to_opamp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_dac_to_opamp/readme.txt -------------------------------------------------------------------------------- /series0/opamp/opamp_inverting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_inverting/readme.txt -------------------------------------------------------------------------------- /series0/opamp/opamp_inverting/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_inverting/src/main_s0.c -------------------------------------------------------------------------------- /series0/opamp/opamp_noninverting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_noninverting/readme.txt -------------------------------------------------------------------------------- /series0/opamp/opamp_to_adc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_to_adc/readme.txt -------------------------------------------------------------------------------- /series0/opamp/opamp_to_adc/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_to_adc/src/main_s0.c -------------------------------------------------------------------------------- /series0/opamp/opamp_unity_gain/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_unity_gain/readme.txt -------------------------------------------------------------------------------- /series0/opamp/opamp_unity_gain/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/opamp/opamp_unity_gain/src/main_s0.c -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32GG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32GG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32G_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32G_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32HG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32HG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32LG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32LG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32TG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32TG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32WG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32WG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/doc/EFM32ZG_rtc_lfxo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/doc/EFM32ZG_rtc_lfxo.xml -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32GG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32GG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32GG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32GG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32G_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32G_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32G_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32G_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32HG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32HG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32HG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32HG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32LG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32LG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32LG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32LG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32TG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32TG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32TG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32TG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32WG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32WG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32WG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32WG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32ZG_rtc_lfxo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32ZG_rtc_lfxo.ewd -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/EFM32ZG_rtc_lfxo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/EFM32ZG_rtc_lfxo.ewp -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/iar/rtc_lfxo.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/iar/rtc_lfxo.eww -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/readme.txt -------------------------------------------------------------------------------- /series0/rtc/rtc_lfxo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_lfxo/src/main.c -------------------------------------------------------------------------------- /series0/rtc/rtc_ulfrco/iar/rtc_ulfrco.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_ulfrco/iar/rtc_ulfrco.eww -------------------------------------------------------------------------------- /series0/rtc/rtc_ulfrco/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_ulfrco/readme.txt -------------------------------------------------------------------------------- /series0/rtc/rtc_ulfrco/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/rtc/rtc_ulfrco/src/main.c -------------------------------------------------------------------------------- /series0/servo/adjust/iar/pwm_servo_adjust.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/adjust/iar/pwm_servo_adjust.eww -------------------------------------------------------------------------------- /series0/servo/adjust/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/adjust/readme.txt -------------------------------------------------------------------------------- /series0/servo/adjust/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/adjust/src/main_g.c -------------------------------------------------------------------------------- /series0/servo/adjust/src/main_series0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/adjust/src/main_series0.c -------------------------------------------------------------------------------- /series0/servo/sweep/iar/pwm_servo_sweep.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/sweep/iar/pwm_servo_sweep.eww -------------------------------------------------------------------------------- /series0/servo/sweep/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/sweep/readme.txt -------------------------------------------------------------------------------- /series0/servo/sweep/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/sweep/src/main_g.c -------------------------------------------------------------------------------- /series0/servo/sweep/src/main_series0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/servo/sweep/src/main_series0.c -------------------------------------------------------------------------------- /series0/timer/timer_pulse_capture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/timer/timer_pulse_capture/readme.txt -------------------------------------------------------------------------------- /series0/timer/timer_pwm_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/timer/timer_pwm_dma/readme.txt -------------------------------------------------------------------------------- /series0/timer/timer_pwm_dma/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/timer/timer_pwm_dma/src/main_g.c -------------------------------------------------------------------------------- /series0/timer/timer_pwm_dma/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/timer/timer_pwm_dma/src/main_s0.c -------------------------------------------------------------------------------- /series0/timer/timer_pwm_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/timer/timer_pwm_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/usart/async_interrupt/readme_s0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/async_interrupt/readme_s0.txt -------------------------------------------------------------------------------- /series0/usart/async_interrupt/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/async_interrupt/src/main_s0.c -------------------------------------------------------------------------------- /series0/usart/async_polled/readme_s0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/async_polled/readme_s0.txt -------------------------------------------------------------------------------- /series0/usart/async_polled/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/async_polled/src/main_s0.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/readme_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/readme_hg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/readme_tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/readme_tg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/readme_zg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/readme_zg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/src/main_s0_hg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/src/main_s0_hg.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/src/main_s0_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/src/main_s0_tg.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_master/src/main_s0_zg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_master/src/main_s0_zg.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/iar/spi_slave.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/iar/spi_slave.eww -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/readme_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/readme_hg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/readme_tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/readme_tg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/readme_zg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/readme_zg.txt -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/src/main_s0_hg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/src/main_s0_hg.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/src/main_s0_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/src/main_s0_tg.c -------------------------------------------------------------------------------- /series0/usart/spi_dma_slave/src/main_s0_zg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_dma_slave/src/main_s0_zg.c -------------------------------------------------------------------------------- /series0/usart/spi_master_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_master_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/usart/spi_master_polled/readme_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_master_polled/readme_hg.txt -------------------------------------------------------------------------------- /series0/usart/spi_master_polled/readme_tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_master_polled/readme_tg.txt -------------------------------------------------------------------------------- /series0/usart/spi_master_polled/readme_zg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_master_polled/readme_zg.txt -------------------------------------------------------------------------------- /series0/usart/spi_slave_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_slave_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/usart/spi_slave_polled/readme_hg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_slave_polled/readme_hg.txt -------------------------------------------------------------------------------- /series0/usart/spi_slave_polled/readme_tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_slave_polled/readme_tg.txt -------------------------------------------------------------------------------- /series0/usart/spi_slave_polled/readme_zg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usart/spi_slave_polled/readme_zg.txt -------------------------------------------------------------------------------- /series0/usbd/usbd_cdc_uart_bridge/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usbd/usbd_cdc_uart_bridge/readme.txt -------------------------------------------------------------------------------- /series0/usbd/usbd_cdc_vcom_echo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usbd/usbd_cdc_vcom_echo/readme.txt -------------------------------------------------------------------------------- /series0/usbd/usbd_cdc_vcom_echo/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/usbd/usbd_cdc_vcom_echo/src/main_s0.c -------------------------------------------------------------------------------- /series0/vcmp/vcmp_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vcmp/vcmp_interrupt/readme.txt -------------------------------------------------------------------------------- /series0/vcmp/vcmp_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vcmp/vcmp_interrupt/src/main.c -------------------------------------------------------------------------------- /series0/vdac/vdac_continuous/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_continuous/readme.txt -------------------------------------------------------------------------------- /series0/vdac/vdac_continuous/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_continuous/src/main_g.c -------------------------------------------------------------------------------- /series0/vdac/vdac_continuous/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_continuous/src/main_s0.c -------------------------------------------------------------------------------- /series0/vdac/vdac_continuous/src/main_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_continuous/src/main_tg.c -------------------------------------------------------------------------------- /series0/vdac/vdac_differential/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_differential/readme.txt -------------------------------------------------------------------------------- /series0/vdac/vdac_differential/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_differential/src/main_g.c -------------------------------------------------------------------------------- /series0/vdac/vdac_differential/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_differential/src/main_s0.c -------------------------------------------------------------------------------- /series0/vdac/vdac_sine_wave_synch/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_sine_wave_synch/readme.txt -------------------------------------------------------------------------------- /series0/vdac/vdac_single/iar/vdac_single.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_single/iar/vdac_single.eww -------------------------------------------------------------------------------- /series0/vdac/vdac_single/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_single/readme.txt -------------------------------------------------------------------------------- /series0/vdac/vdac_single/src/main_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_single/src/main_g.c -------------------------------------------------------------------------------- /series0/vdac/vdac_single/src/main_s0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/vdac/vdac_single/src/main_s0.c -------------------------------------------------------------------------------- /series0/wdog/wdog_led_toggle/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/wdog/wdog_led_toggle/readme.txt -------------------------------------------------------------------------------- /series0/wdog/wdog_led_toggle/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series0/wdog/wdog_led_toggle/src/main.c -------------------------------------------------------------------------------- /series1/acmp/acmp_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/acmp/acmp_interrupt/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_interrupt/src/main_gg11.c -------------------------------------------------------------------------------- /series1/acmp/acmp_interrupt/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_interrupt/src/main_s1.c -------------------------------------------------------------------------------- /series1/acmp/acmp_interrupt/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_interrupt/src/main_tg11.c -------------------------------------------------------------------------------- /series1/acmp/acmp_pin_output/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_pin_output/readme.txt -------------------------------------------------------------------------------- /series1/acmp/acmp_pin_output/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_pin_output/src/main_gg11.c -------------------------------------------------------------------------------- /series1/acmp/acmp_pin_output/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_pin_output/src/main_s1.c -------------------------------------------------------------------------------- /series1/acmp/acmp_pin_output/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_pin_output/src/main_tg11.c -------------------------------------------------------------------------------- /series1/acmp/acmp_polled/iar/acmp_polled.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_polled/iar/acmp_polled.eww -------------------------------------------------------------------------------- /series1/acmp/acmp_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_polled/readme.txt -------------------------------------------------------------------------------- /series1/acmp/acmp_polled/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_polled/src/main_gg11.c -------------------------------------------------------------------------------- /series1/acmp/acmp_polled/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_polled/src/main_s1.c -------------------------------------------------------------------------------- /series1/acmp/acmp_polled/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/acmp/acmp_polled/src/main_tg11.c -------------------------------------------------------------------------------- /series1/adc/adc_scan_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_scan_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/adc/adc_scan_interrupt/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_scan_interrupt/src/main_s1.c -------------------------------------------------------------------------------- /series1/adc/adc_scan_prs_gpio_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_scan_prs_gpio_dma/readme.txt -------------------------------------------------------------------------------- /series1/adc/adc_single_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_single_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/adc/adc_single_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_single_polled/readme.txt -------------------------------------------------------------------------------- /series1/adc/adc_single_polled/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_single_polled/src/main_s1.c -------------------------------------------------------------------------------- /series1/adc/adc_single_polled/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/adc/adc_single_polled/src/main_tg11.c -------------------------------------------------------------------------------- /series1/cmu/hfrco_cal_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/hfrco_cal_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/cmu/hfrco_cal_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/hfrco_cal_polled/readme.txt -------------------------------------------------------------------------------- /series1/cmu/hfrco_cal_polled/src/main_tg_gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/hfrco_cal_polled/src/main_tg_gg.c -------------------------------------------------------------------------------- /series1/cmu/lfrco_cal_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/lfrco_cal_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/cmu/lfrco_cal_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/lfrco_cal_polled/readme.txt -------------------------------------------------------------------------------- /series1/cmu/lfrco_cal_polled/src/main_tg_gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/cmu/lfrco_cal_polled/src/main_tg_gg.c -------------------------------------------------------------------------------- /series1/core/dsp_lib_fft/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/core/dsp_lib_fft/readme.txt -------------------------------------------------------------------------------- /series1/core/dsp_lib_fft/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/core/dsp_lib_fft/src/main.c -------------------------------------------------------------------------------- /series1/emu/voltage_scaling/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/emu/voltage_scaling/readme.txt -------------------------------------------------------------------------------- /series1/emu/voltage_scaling/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/emu/voltage_scaling/src/main.c -------------------------------------------------------------------------------- /series1/gpcrc/gpcrc_dma/iar/gpcrc_dma.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpcrc/gpcrc_dma/iar/gpcrc_dma.eww -------------------------------------------------------------------------------- /series1/gpcrc/gpcrc_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpcrc/gpcrc_dma/readme.txt -------------------------------------------------------------------------------- /series1/gpcrc/gpcrc_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpcrc/gpcrc_dma/src/main.c -------------------------------------------------------------------------------- /series1/gpcrc/gpcrc_software/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpcrc/gpcrc_software/readme.txt -------------------------------------------------------------------------------- /series1/gpcrc/gpcrc_software/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpcrc/gpcrc_software/src/main.c -------------------------------------------------------------------------------- /series1/gpio/EM4_WakeUp/iar/EM4_WakeUp.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/EM4_WakeUp/iar/EM4_WakeUp.eww -------------------------------------------------------------------------------- /series1/gpio/EM4_WakeUp/readme_s1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/EM4_WakeUp/readme_s1.txt -------------------------------------------------------------------------------- /series1/gpio/EM4_WakeUp/src/main_efr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/EM4_WakeUp/src/main_efr32.c -------------------------------------------------------------------------------- /series1/gpio/EM4_WakeUp/src/main_gg11_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/EM4_WakeUp/src/main_gg11_tg11.c -------------------------------------------------------------------------------- /series1/gpio/EM4_WakeUp/src/main_pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/EM4_WakeUp/src/main_pg.c -------------------------------------------------------------------------------- /series1/gpio/gpio_periph/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_periph/iar/gpio.eww -------------------------------------------------------------------------------- /series1/gpio/gpio_periph/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_periph/readme.txt -------------------------------------------------------------------------------- /series1/gpio/gpio_prs/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_prs/iar/gpio.eww -------------------------------------------------------------------------------- /series1/gpio/gpio_prs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_prs/readme.txt -------------------------------------------------------------------------------- /series1/gpio/gpio_prs/src/main_gpio_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_prs/src/main_gpio_prs.c -------------------------------------------------------------------------------- /series1/gpio/gpio_slew_rate/iar/gpio.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_slew_rate/iar/gpio.eww -------------------------------------------------------------------------------- /series1/gpio/gpio_slew_rate/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/gpio_slew_rate/readme.txt -------------------------------------------------------------------------------- /series1/gpio/switch_led_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/switch_led_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/gpio/switch_led_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/switch_led_polled/readme.txt -------------------------------------------------------------------------------- /series1/gpio/switch_led_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/gpio/switch_led_polled/src/main.c -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFM32GG11_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFM32GG11_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFM32PG12B_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFM32PG12B_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFM32PG1B_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFM32PG1B_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFM32TG11_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFM32TG11_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32BG12P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32BG12P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32BG13P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32BG13P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32BG1P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32BG1P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32FG12P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32FG12P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32FG13P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32FG13P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32FG14P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32FG14P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32FG1P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32FG1P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32MG12P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32MG12P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32MG13P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32MG13P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32MG14P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32MG14P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/doc/EFR32MG1P_i2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/doc/EFR32MG1P_i2c.xml -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32GG11_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32GG11_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32GG11_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32GG11_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32PG12B_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32PG12B_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32PG12B_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32PG12B_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32PG1B_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32PG1B_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32PG1B_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32PG1B_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32TG11_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32TG11_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFM32TG11_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFM32TG11_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG12P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG12P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG12P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG12P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG13P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG13P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG13P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG13P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG1P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG1P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32BG1P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32BG1P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG12P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG12P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG12P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG12P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG13P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG13P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG13P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG13P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG14P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG14P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG14P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG14P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG1P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG1P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32FG1P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32FG1P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG12P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG12P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG12P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG12P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG13P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG13P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG13P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG13P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG14P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG14P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG14P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG14P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG1P_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG1P_i2c.ewd -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/EFR32MG1P_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/EFR32MG1P_i2c.ewp -------------------------------------------------------------------------------- /series1/i2c/i2c/iar/i2c.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/iar/i2c.eww -------------------------------------------------------------------------------- /series1/i2c/i2c/readme_efr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/readme_efr.txt -------------------------------------------------------------------------------- /series1/i2c/i2c/readme_gg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/readme_gg11.txt -------------------------------------------------------------------------------- /series1/i2c/i2c/readme_pgxx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/readme_pgxx.txt -------------------------------------------------------------------------------- /series1/i2c/i2c/readme_tg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/readme_tg11.txt -------------------------------------------------------------------------------- /series1/i2c/i2c/src/main_efr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/src/main_efr.c -------------------------------------------------------------------------------- /series1/i2c/i2c/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/src/main_gg11.c -------------------------------------------------------------------------------- /series1/i2c/i2c/src/main_pgxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/src/main_pgxx.c -------------------------------------------------------------------------------- /series1/i2c/i2c/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2c/i2c/src/main_tg11.c -------------------------------------------------------------------------------- /series1/i2s/i2s/doc/EFM32GG11_i2s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/doc/EFM32GG11_i2s.xml -------------------------------------------------------------------------------- /series1/i2s/i2s/iar/EFM32GG11_i2s.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/iar/EFM32GG11_i2s.ewd -------------------------------------------------------------------------------- /series1/i2s/i2s/iar/EFM32GG11_i2s.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/iar/EFM32GG11_i2s.ewp -------------------------------------------------------------------------------- /series1/i2s/i2s/iar/i2s.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/iar/i2s.eww -------------------------------------------------------------------------------- /series1/i2s/i2s/readme_gg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/readme_gg11.txt -------------------------------------------------------------------------------- /series1/i2s/i2s/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/i2s/i2s/src/main_gg11.c -------------------------------------------------------------------------------- /series1/idac/idac_output_constant/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/idac/idac_output_constant/readme.txt -------------------------------------------------------------------------------- /series1/idac/idac_timer_prs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/idac/idac_timer_prs/readme.txt -------------------------------------------------------------------------------- /series1/idac/idac_timer_prs/src/main_pg12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/idac/idac_timer_prs/src/main_pg12.c -------------------------------------------------------------------------------- /series1/idac/idac_timer_prs/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/idac/idac_timer_prs/src/main_s1.c -------------------------------------------------------------------------------- /series1/ldma/ldma_2d_copy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_2d_copy/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_2d_copy/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_2d_copy/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_linked_list/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_linked_list/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_linked_list/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_linked_list/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_ping_pong/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_ping_pong/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_ping_pong/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_ping_pong/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_scatter_gather/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_scatter_gather/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_scatter_gather/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_scatter_gather/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_single_button/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_button/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_single_button/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_button/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_single_looped/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_looped/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_single_looped/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_looped/src/main.c -------------------------------------------------------------------------------- /series1/ldma/ldma_single_software/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_software/readme.txt -------------------------------------------------------------------------------- /series1/ldma/ldma_single_software/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/ldma/ldma_single_software/src/main.c -------------------------------------------------------------------------------- /series1/letimer/pulse_train/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/letimer/pulse_train/readme.txt -------------------------------------------------------------------------------- /series1/letimer/pulse_train/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/letimer/pulse_train/src/main_gg11.c -------------------------------------------------------------------------------- /series1/letimer/pulse_train/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/letimer/pulse_train/src/main_s1.c -------------------------------------------------------------------------------- /series1/letimer/pulse_train/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/letimer/pulse_train/src/main_tg11.c -------------------------------------------------------------------------------- /series1/leuart/leuart_dma/iar/leuart_dma.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_dma/iar/leuart_dma.eww -------------------------------------------------------------------------------- /series1/leuart/leuart_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_dma/readme.txt -------------------------------------------------------------------------------- /series1/leuart/leuart_dma/src/main_pg12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_dma/src/main_pg12.c -------------------------------------------------------------------------------- /series1/leuart/leuart_dma/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_dma/src/main_s1.c -------------------------------------------------------------------------------- /series1/leuart/leuart_echo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_echo/readme.txt -------------------------------------------------------------------------------- /series1/leuart/leuart_echo/src/main_pg12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_echo/src/main_pg12.c -------------------------------------------------------------------------------- /series1/leuart/leuart_echo/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_echo/src/main_s1.c -------------------------------------------------------------------------------- /series1/leuart/leuart_half_duplex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/leuart/leuart_half_duplex/readme.txt -------------------------------------------------------------------------------- /series1/msc/debug_lock/iar/debug_lock.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/iar/debug_lock.eww -------------------------------------------------------------------------------- /series1/msc/debug_lock/readme_sysresetreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/readme_sysresetreq.txt -------------------------------------------------------------------------------- /series1/msc/debug_lock/src/main_resetn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/src/main_resetn.c -------------------------------------------------------------------------------- /series1/msc/debug_lock/src/main_sysresetreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/src/main_sysresetreq.c -------------------------------------------------------------------------------- /series1/msc/debug_lock/test/test_M0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/test/test_M0.bat -------------------------------------------------------------------------------- /series1/msc/debug_lock/test/test_M3-M4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/debug_lock/test/test_M3-M4.bat -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFM32GG11_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFM32GG11_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFM32PG12B_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFM32PG12B_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFM32PG1B_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFM32PG1B_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFM32TG11_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFM32TG11_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32BG12P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32BG12P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32BG13P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32BG13P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32BG1P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32BG1P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32FG12P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32FG12P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32FG13P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32FG13P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32FG14P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32FG14P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32FG1P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32FG1P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32MG12P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32MG12P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32MG13P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32MG13P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32MG14P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32MG14P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/doc/EFR32MG1P_msc_rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/doc/EFR32MG1P_msc_rw.xml -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32GG11_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32GG11_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32GG11_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32GG11_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32PG12B_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32PG12B_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32PG12B_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32PG12B_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32PG1B_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32PG1B_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32PG1B_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32PG1B_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32TG11_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32TG11_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFM32TG11_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFM32TG11_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG12P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG12P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG12P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG12P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG13P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG13P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG13P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG13P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG1P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG1P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32BG1P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32BG1P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG12P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG12P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG12P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG12P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG13P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG13P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG13P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG13P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG14P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG14P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG14P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG14P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG1P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG1P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32FG1P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32FG1P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG12P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG12P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG12P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG12P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG13P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG13P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG13P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG13P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG14P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG14P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG14P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG14P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG1P_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG1P_msc_rw.ewd -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/EFR32MG1P_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/EFR32MG1P_msc_rw.ewp -------------------------------------------------------------------------------- /series1/msc/msc_rw/iar/msc_rw.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/iar/msc_rw.eww -------------------------------------------------------------------------------- /series1/msc/msc_rw/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/readme.txt -------------------------------------------------------------------------------- /series1/msc/msc_rw/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/msc/msc_rw/src/main.c -------------------------------------------------------------------------------- /series1/opamp/opamp_dac_to_opamp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_dac_to_opamp/readme.txt -------------------------------------------------------------------------------- /series1/opamp/opamp_inverting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_inverting/readme.txt -------------------------------------------------------------------------------- /series1/opamp/opamp_inverting/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_inverting/src/main_gg11.c -------------------------------------------------------------------------------- /series1/opamp/opamp_inverting/src/main_pg12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_inverting/src/main_pg12.c -------------------------------------------------------------------------------- /series1/opamp/opamp_inverting/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_inverting/src/main_tg11.c -------------------------------------------------------------------------------- /series1/opamp/opamp_noninverting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_noninverting/readme.txt -------------------------------------------------------------------------------- /series1/opamp/opamp_to_adc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_to_adc/readme.txt -------------------------------------------------------------------------------- /series1/opamp/opamp_to_adc/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_to_adc/src/main_gg11.c -------------------------------------------------------------------------------- /series1/opamp/opamp_to_adc/src/main_radio13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_to_adc/src/main_radio13.c -------------------------------------------------------------------------------- /series1/opamp/opamp_to_adc/src/main_radio14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_to_adc/src/main_radio14.c -------------------------------------------------------------------------------- /series1/opamp/opamp_to_adc/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_to_adc/src/main_tg11.c -------------------------------------------------------------------------------- /series1/opamp/opamp_unity_gain/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/opamp/opamp_unity_gain/readme.txt -------------------------------------------------------------------------------- /series1/prs/logic_unit/iar/logic_unit.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/iar/logic_unit.eww -------------------------------------------------------------------------------- /series1/prs/logic_unit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/readme.txt -------------------------------------------------------------------------------- /series1/prs/logic_unit/src/em_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/src/em_prs.c -------------------------------------------------------------------------------- /series1/prs/logic_unit/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/src/main.c -------------------------------------------------------------------------------- /series1/prs/logic_unit/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/src/main_gg11.c -------------------------------------------------------------------------------- /series1/prs/logic_unit/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/prs/logic_unit/src/main_tg11.c -------------------------------------------------------------------------------- /series1/rmu/rmu_pin_reset_extended/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rmu/rmu_pin_reset_extended/readme.txt -------------------------------------------------------------------------------- /series1/rmu/rmu_pin_reset_extended/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rmu/rmu_pin_reset_extended/src/main.c -------------------------------------------------------------------------------- /series1/rmu/rmu_wdog_limited/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rmu/rmu_wdog_limited/readme.txt -------------------------------------------------------------------------------- /series1/rmu/rmu_wdog_limited/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rmu/rmu_wdog_limited/src/main.c -------------------------------------------------------------------------------- /series1/rtcc/rtcc_alarm_set/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rtcc/rtcc_alarm_set/readme.txt -------------------------------------------------------------------------------- /series1/rtcc/rtcc_alarm_set/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rtcc/rtcc_alarm_set/src/main.c -------------------------------------------------------------------------------- /series1/rtcc/rtcc_alarm_set/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rtcc/rtcc_alarm_set/src/main_gg11.c -------------------------------------------------------------------------------- /series1/rtcc/rtcc_em4_wake/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/rtcc/rtcc_em4_wake/readme.txt -------------------------------------------------------------------------------- /series1/servo/adjust/iar/pwm_servo_adjust.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/adjust/iar/pwm_servo_adjust.eww -------------------------------------------------------------------------------- /series1/servo/adjust/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/adjust/readme.txt -------------------------------------------------------------------------------- /series1/servo/adjust/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/adjust/src/main_gg11.c -------------------------------------------------------------------------------- /series1/servo/adjust/src/main_series1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/adjust/src/main_series1.c -------------------------------------------------------------------------------- /series1/servo/adjust/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/adjust/src/main_tg11.c -------------------------------------------------------------------------------- /series1/servo/sweep/iar/pwm_servo_sweep.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/sweep/iar/pwm_servo_sweep.eww -------------------------------------------------------------------------------- /series1/servo/sweep/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/sweep/readme.txt -------------------------------------------------------------------------------- /series1/servo/sweep/src/main_gg11_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/sweep/src/main_gg11_tg11.c -------------------------------------------------------------------------------- /series1/servo/sweep/src/main_series1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/servo/sweep/src/main_series1.c -------------------------------------------------------------------------------- /series1/timer/timer_pulse_capture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/timer/timer_pulse_capture/readme.txt -------------------------------------------------------------------------------- /series1/timer/timer_pwm_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/timer/timer_pwm_dma/readme.txt -------------------------------------------------------------------------------- /series1/timer/timer_pwm_dma/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/timer/timer_pwm_dma/src/main_s1.c -------------------------------------------------------------------------------- /series1/timer/timer_pwm_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/timer/timer_pwm_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/usart/async_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/usart/async_interrupt/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_interrupt/src/main_gg11.c -------------------------------------------------------------------------------- /series1/usart/async_interrupt/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_interrupt/src/main_tg11.c -------------------------------------------------------------------------------- /series1/usart/async_polled/readme_pg1_efr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_polled/readme_pg1_efr.txt -------------------------------------------------------------------------------- /series1/usart/async_polled/readme_xg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_polled/readme_xg11.txt -------------------------------------------------------------------------------- /series1/usart/async_polled/readme_xg12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_polled/readme_xg12.txt -------------------------------------------------------------------------------- /series1/usart/async_polled/src/main_s1_xg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_polled/src/main_s1_xg11.c -------------------------------------------------------------------------------- /series1/usart/async_polled/src/main_s1_xg12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/async_polled/src/main_s1_xg12.c -------------------------------------------------------------------------------- /series1/usart/spi_dma_master/readme_gg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_master/readme_gg11.txt -------------------------------------------------------------------------------- /series1/usart/spi_dma_master/readme_tg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_master/readme_tg11.txt -------------------------------------------------------------------------------- /series1/usart/spi_dma_master/readme_xg12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_master/readme_xg12.txt -------------------------------------------------------------------------------- /series1/usart/spi_dma_slave/iar/spi_slave.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_slave/iar/spi_slave.eww -------------------------------------------------------------------------------- /series1/usart/spi_dma_slave/readme_gg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_slave/readme_gg11.txt -------------------------------------------------------------------------------- /series1/usart/spi_dma_slave/readme_tg11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_slave/readme_tg11.txt -------------------------------------------------------------------------------- /series1/usart/spi_dma_slave/readme_xg12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_dma_slave/readme_xg12.txt -------------------------------------------------------------------------------- /series1/usart/spi_master_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_master_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/usart/spi_slave_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/usart/spi_slave_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/vdac/vdac_continuous/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_continuous/readme.txt -------------------------------------------------------------------------------- /series1/vdac/vdac_continuous/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_continuous/src/main_s1.c -------------------------------------------------------------------------------- /series1/vdac/vdac_continuous/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_continuous/src/main_tg11.c -------------------------------------------------------------------------------- /series1/vdac/vdac_differential/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_differential/readme.txt -------------------------------------------------------------------------------- /series1/vdac/vdac_sine_wave_synch/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_sine_wave_synch/readme.txt -------------------------------------------------------------------------------- /series1/vdac/vdac_single/iar/vdac_single.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_single/iar/vdac_single.eww -------------------------------------------------------------------------------- /series1/vdac/vdac_single/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_single/readme.txt -------------------------------------------------------------------------------- /series1/vdac/vdac_single/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_single/src/main_s1.c -------------------------------------------------------------------------------- /series1/vdac/vdac_single/src/main_tg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vdac/vdac_single/src/main_tg11.c -------------------------------------------------------------------------------- /series1/vmon/vmon_em4_wakeup/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vmon/vmon_em4_wakeup/readme.txt -------------------------------------------------------------------------------- /series1/vmon/vmon_em4_wakeup/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vmon/vmon_em4_wakeup/src/main.c -------------------------------------------------------------------------------- /series1/vmon/vmon_em4_wakeup/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vmon/vmon_em4_wakeup/src/main_gg11.c -------------------------------------------------------------------------------- /series1/vmon/vmon_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vmon/vmon_interrupt/readme.txt -------------------------------------------------------------------------------- /series1/vmon/vmon_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/vmon/vmon_interrupt/src/main.c -------------------------------------------------------------------------------- /series1/wdog/wdog_led_toggle/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/wdog/wdog_led_toggle/readme.txt -------------------------------------------------------------------------------- /series1/wdog/wdog_led_toggle/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/wdog/wdog_led_toggle/src/main.c -------------------------------------------------------------------------------- /series1/wdog/wdog_led_toggle/src/main_gg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/wdog/wdog_led_toggle/src/main_gg11.c -------------------------------------------------------------------------------- /series1/wtimer/wtimer_pwm_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/wtimer/wtimer_pwm_dma/readme.txt -------------------------------------------------------------------------------- /series1/wtimer/wtimer_pwm_dma/src/main_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series1/wtimer/wtimer_pwm_dma/src/main_s1.c -------------------------------------------------------------------------------- /series2/acmp/acmp_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/acmp/acmp_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_interrupt/src/main.c -------------------------------------------------------------------------------- /series2/acmp/acmp_interrupt/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_interrupt/src/main_xg21.c -------------------------------------------------------------------------------- /series2/acmp/acmp_pin_output/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_pin_output/readme.txt -------------------------------------------------------------------------------- /series2/acmp/acmp_pin_output/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_pin_output/src/main.c -------------------------------------------------------------------------------- /series2/acmp/acmp_pin_output/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_pin_output/src/main_xg21.c -------------------------------------------------------------------------------- /series2/acmp/acmp_polled/iar/acmp_polled.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_polled/iar/acmp_polled.eww -------------------------------------------------------------------------------- /series2/acmp/acmp_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_polled/readme.txt -------------------------------------------------------------------------------- /series2/acmp/acmp_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_polled/src/main.c -------------------------------------------------------------------------------- /series2/acmp/acmp_polled/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_polled/src/main_xg21.c -------------------------------------------------------------------------------- /series2/acmp/acmp_vmon/iar/acmp_vmon.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_vmon/iar/acmp_vmon.eww -------------------------------------------------------------------------------- /series2/acmp/acmp_vmon/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_vmon/readme.txt -------------------------------------------------------------------------------- /series2/acmp/acmp_vmon/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_vmon/src/main.c -------------------------------------------------------------------------------- /series2/acmp/acmp_vmon/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_vmon/src/main_xg21.c -------------------------------------------------------------------------------- /series2/acmp/acmp_vmon/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/acmp/acmp_vmon/src/main_xg27.c -------------------------------------------------------------------------------- /series2/burtc/burtc_em4_buram/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/burtc/burtc_em4_buram/readme.txt -------------------------------------------------------------------------------- /series2/burtc/burtc_em4_buram/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/burtc/burtc_em4_buram/src/main_xg21.c -------------------------------------------------------------------------------- /series2/burtc/burtc_em4_buram/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/burtc/burtc_em4_buram/src/main_xg27.c -------------------------------------------------------------------------------- /series2/burtc/burtc_em4_buram/src/main_xg2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/burtc/burtc_em4_buram/src/main_xg2x.c -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_interrupt/src/main.c -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_polled/readme.txt -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_polled/src/main.c -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_polled/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_polled/src/main_xg21.c -------------------------------------------------------------------------------- /series2/cmu/lfrco_cal_polled/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/cmu/lfrco_cal_polled/src/main_xg28.c -------------------------------------------------------------------------------- /series2/emu/dcdc_vmon/iar/dcdc_vmon.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/dcdc_vmon/iar/dcdc_vmon.eww -------------------------------------------------------------------------------- /series2/emu/dcdc_vmon/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/dcdc_vmon/readme.txt -------------------------------------------------------------------------------- /series2/emu/dcdc_vmon/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/dcdc_vmon/src/main.c -------------------------------------------------------------------------------- /series2/emu/em01_voltage_scaling/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em01_voltage_scaling/readme.txt -------------------------------------------------------------------------------- /series2/emu/em01_voltage_scaling/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em01_voltage_scaling/src/main.c -------------------------------------------------------------------------------- /series2/emu/em0_dcdc/iar/em0_dcdc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em0_dcdc/iar/em0_dcdc.eww -------------------------------------------------------------------------------- /series2/emu/em0_dcdc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em0_dcdc/readme.txt -------------------------------------------------------------------------------- /series2/emu/em0_dcdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em0_dcdc/src/main.c -------------------------------------------------------------------------------- /series2/emu/em0_dcdc/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em0_dcdc/src/main_xg25.c -------------------------------------------------------------------------------- /series2/emu/em1_dcdc/iar/em1_dcdc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em1_dcdc/iar/em1_dcdc.eww -------------------------------------------------------------------------------- /series2/emu/em1_dcdc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em1_dcdc/readme.txt -------------------------------------------------------------------------------- /series2/emu/em1_dcdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em1_dcdc/src/main.c -------------------------------------------------------------------------------- /series2/emu/em1_dcdc/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em1_dcdc/src/main_xg25.c -------------------------------------------------------------------------------- /series2/emu/em23_voltage_scaling/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em23_voltage_scaling/readme.txt -------------------------------------------------------------------------------- /series2/emu/em23_voltage_scaling/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em23_voltage_scaling/src/main.c -------------------------------------------------------------------------------- /series2/emu/em2_dcdc/iar/em2_dcdc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em2_dcdc/iar/em2_dcdc.eww -------------------------------------------------------------------------------- /series2/emu/em2_dcdc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em2_dcdc/readme.txt -------------------------------------------------------------------------------- /series2/emu/em2_dcdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em2_dcdc/src/main.c -------------------------------------------------------------------------------- /series2/emu/em2_dcdc/src/main_xg27_boost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em2_dcdc/src/main_xg27_boost.c -------------------------------------------------------------------------------- /series2/emu/em2_dcdc/src/main_xg27_buck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em2_dcdc/src/main_xg27_buck.c -------------------------------------------------------------------------------- /series2/emu/em3_dcdc/iar/em3_dcdc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em3_dcdc/iar/em3_dcdc.eww -------------------------------------------------------------------------------- /series2/emu/em3_dcdc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em3_dcdc/readme.txt -------------------------------------------------------------------------------- /series2/emu/em3_dcdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em3_dcdc/src/main.c -------------------------------------------------------------------------------- /series2/emu/em3_dcdc/src/main_xg27_boost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em3_dcdc/src/main_xg27_boost.c -------------------------------------------------------------------------------- /series2/emu/em3_dcdc/src/main_xg27_buck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em3_dcdc/src/main_xg27_buck.c -------------------------------------------------------------------------------- /series2/emu/em4_no_dcdc/iar/em4_no_dcdc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em4_no_dcdc/iar/em4_no_dcdc.eww -------------------------------------------------------------------------------- /series2/emu/em4_no_dcdc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em4_no_dcdc/readme.txt -------------------------------------------------------------------------------- /series2/emu/em4_no_dcdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/emu/em4_no_dcdc/src/main.c -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em2/readme.txt -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em2/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em2/src/main_xg25.c -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em2/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em2/src/main_xg27.c -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em4/readme.txt -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em4/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em4/src/main_xg25.c -------------------------------------------------------------------------------- /series2/etampdet/etampdet_em4/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/etampdet/etampdet_em4/src/main_xg27.c -------------------------------------------------------------------------------- /series2/euart/euart_echo/iar/euart_echo.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_echo/iar/euart_echo.eww -------------------------------------------------------------------------------- /series2/euart/euart_echo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_echo/readme.txt -------------------------------------------------------------------------------- /series2/euart/euart_echo/src/main_xg2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_echo/src/main_xg2x.c -------------------------------------------------------------------------------- /series2/euart/euart_half_duplex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_half_duplex/readme.txt -------------------------------------------------------------------------------- /series2/euart/euart_ldma_em2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_ldma_em2/readme.txt -------------------------------------------------------------------------------- /series2/euart/euart_ldma_em2/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/euart/euart_ldma_em2/src/main.c -------------------------------------------------------------------------------- /series2/eusart/async_autobaud/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_autobaud/readme.txt -------------------------------------------------------------------------------- /series2/eusart/async_autobaud/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_autobaud/src/main.c -------------------------------------------------------------------------------- /series2/eusart/async_autobaud/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_autobaud/src/main_xg27.c -------------------------------------------------------------------------------- /series2/eusart/async_dma_em2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_dma_em2/readme.txt -------------------------------------------------------------------------------- /series2/eusart/async_dma_em2/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_dma_em2/src/main.c -------------------------------------------------------------------------------- /series2/eusart/async_dma_em2/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_dma_em2/src/main_xg27.c -------------------------------------------------------------------------------- /series2/eusart/async_half_duplex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_half_duplex/readme.txt -------------------------------------------------------------------------------- /series2/eusart/async_half_duplex/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_half_duplex/src/main.c -------------------------------------------------------------------------------- /series2/eusart/async_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/eusart/async_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_interrupt/src/main.c -------------------------------------------------------------------------------- /series2/eusart/async_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_polled/readme.txt -------------------------------------------------------------------------------- /series2/eusart/async_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/async_polled/src/main.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_dma/readme.txt -------------------------------------------------------------------------------- /series2/eusart/spi_main_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_dma/src/main.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_dma/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_dma/src/main_xg25.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_dma/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_dma/src/main_xg27.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_dma/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_dma/src/main_xg28.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/eusart/spi_main_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_interrupt/src/main.c -------------------------------------------------------------------------------- /series2/eusart/spi_main_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_polled/readme.txt -------------------------------------------------------------------------------- /series2/eusart/spi_main_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_main_polled/src/main.c -------------------------------------------------------------------------------- /series2/eusart/spi_secondary_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_secondary_dma/readme.txt -------------------------------------------------------------------------------- /series2/eusart/spi_secondary_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/eusart/spi_secondary_dma/src/main.c -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_dma/iar/gpcrc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_dma/iar/gpcrc.eww -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_dma/readme.txt -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_dma/src/main.c -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_dma/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_dma/src/main_xg21.c -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_software/iar/gpcrc.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_software/iar/gpcrc.eww -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_software/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_software/readme.txt -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_software/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_software/src/main.c -------------------------------------------------------------------------------- /series2/gpcrc/gpcrc_software/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpcrc/gpcrc_software/src/main_xg21.c -------------------------------------------------------------------------------- /series2/gpio/gpio_em4_wakeup/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_em4_wakeup/readme.txt -------------------------------------------------------------------------------- /series2/gpio/gpio_em4_wakeup/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_em4_wakeup/src/main.c -------------------------------------------------------------------------------- /series2/gpio/gpio_em4_wakeup/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_em4_wakeup/src/main_xg21.c -------------------------------------------------------------------------------- /series2/gpio/gpio_em4_wakeup/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_em4_wakeup/src/main_xg27.c -------------------------------------------------------------------------------- /series2/gpio/gpio_periph/iar/gpio_periph.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_periph/iar/gpio_periph.eww -------------------------------------------------------------------------------- /series2/gpio/gpio_periph/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_periph/readme.txt -------------------------------------------------------------------------------- /series2/gpio/gpio_slew_rate/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/gpio_slew_rate/readme.txt -------------------------------------------------------------------------------- /series2/gpio/switch_led_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/switch_led_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/gpio/switch_led_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/gpio/switch_led_polled/readme.txt -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/iar/i2c_follower.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/iar/i2c_follower.eww -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/readme.txt -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/src/main.c -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/src/main_xg21.c -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/src/main_xg22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/src/main_xg22.c -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/src/main_xg27.c -------------------------------------------------------------------------------- /series2/i2c/i2c_follower/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_follower/src/main_xg28.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/readme.txt -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg21.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg22.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg23.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg24.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg25.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg27.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_dma/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_dma/src/main_xg28.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_polled/readme.txt -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_polled/readme_xg27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_polled/readme_xg27.txt -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_polled/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_polled/src/main.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_polled/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_polled/src/main_xg27.c -------------------------------------------------------------------------------- /series2/i2c/i2c_leader_polled/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/i2c/i2c_leader_polled/src/main_xg28.c -------------------------------------------------------------------------------- /series2/iadc/iadc_scan_iadc_timer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_scan_iadc_timer/readme.txt -------------------------------------------------------------------------------- /series2/iadc/iadc_scan_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_scan_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/iadc/iadc_single_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_single_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/iadc/iadc_vmon/iar/iadc_vmon.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_vmon/iar/iadc_vmon.eww -------------------------------------------------------------------------------- /series2/iadc/iadc_vmon/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_vmon/readme.txt -------------------------------------------------------------------------------- /series2/iadc/iadc_vmon/readme_xg21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_vmon/readme_xg21.txt -------------------------------------------------------------------------------- /series2/iadc/iadc_vmon/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_vmon/src/main.c -------------------------------------------------------------------------------- /series2/iadc/iadc_vmon/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/iadc/iadc_vmon/src/main_xg21.c -------------------------------------------------------------------------------- /series2/kit/EFR32BG27_BRD4111A/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32BG27_BRD4111A/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32FG25_BRD4270B/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32FG25_BRD4270B/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32MG24_BRD4186C/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32MG24_BRD4186C/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32MG27_BRD4194A/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32MG27_BRD4194A/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32ZG23_BRD4204D/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32ZG23_BRD4204D/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32ZG28_BRD4400B/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32ZG28_BRD4400B/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/EFR32ZG28_BRD4400C/bspconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/EFR32ZG28_BRD4400C/bspconfig.h -------------------------------------------------------------------------------- /series2/kit/common/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/bsp/bsp.h -------------------------------------------------------------------------------- /series2/kit/common/bsp/bsp_bcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/bsp/bsp_bcp.h -------------------------------------------------------------------------------- /series2/kit/common/bsp/bsp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/bsp/bsp_init.c -------------------------------------------------------------------------------- /series2/kit/common/bsp/bsp_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/bsp/bsp_init.h -------------------------------------------------------------------------------- /series2/kit/common/drivers/mx25flash_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/drivers/mx25flash_spi.c -------------------------------------------------------------------------------- /series2/kit/common/drivers/mx25flash_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/drivers/mx25flash_spi.h -------------------------------------------------------------------------------- /series2/kit/common/drivers/retargetio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/drivers/retargetio.c -------------------------------------------------------------------------------- /series2/kit/common/drivers/retargetserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/drivers/retargetserial.c -------------------------------------------------------------------------------- /series2/kit/common/drivers/retargetserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/kit/common/drivers/retargetserial.h -------------------------------------------------------------------------------- /series2/ldma/ldma_2d_copy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_2d_copy/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_2d_copy/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_2d_copy/src/main.c -------------------------------------------------------------------------------- /series2/ldma/ldma_linked_list/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_linked_list/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_linked_list/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_linked_list/src/main.c -------------------------------------------------------------------------------- /series2/ldma/ldma_ping_pong/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_ping_pong/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_ping_pong/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_ping_pong/src/main.c -------------------------------------------------------------------------------- /series2/ldma/ldma_scatter_gather/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_scatter_gather/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_scatter_gather/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_scatter_gather/src/main.c -------------------------------------------------------------------------------- /series2/ldma/ldma_single_button/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_single_button/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_single_button/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_single_button/src/main.c -------------------------------------------------------------------------------- /series2/ldma/ldma_single_looped/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_single_looped/readme.txt -------------------------------------------------------------------------------- /series2/ldma/ldma_single_looped/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/ldma/ldma_single_looped/src/main.c -------------------------------------------------------------------------------- /series2/lesense/lesense_decoder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/lesense/lesense_decoder/readme.txt -------------------------------------------------------------------------------- /series2/lesense/lesense_decoder/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/lesense/lesense_decoder/src/main.c -------------------------------------------------------------------------------- /series2/letimer/pulse_train/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/letimer/pulse_train/readme.txt -------------------------------------------------------------------------------- /series2/letimer/pulse_train/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/letimer/pulse_train/src/main.c -------------------------------------------------------------------------------- /series2/letimer/pulse_train/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/letimer/pulse_train/src/main_xg21.c -------------------------------------------------------------------------------- /series2/letimer/pulse_train/src/main_xg22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/letimer/pulse_train/src/main_xg22.c -------------------------------------------------------------------------------- /series2/linker_scripts/xg23_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/linker_scripts/xg23_linker_script.ld -------------------------------------------------------------------------------- /series2/linker_scripts/xg24_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/linker_scripts/xg24_linker_script.ld -------------------------------------------------------------------------------- /series2/linker_scripts/xg25_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/linker_scripts/xg25_linker_script.ld -------------------------------------------------------------------------------- /series2/linker_scripts/xg27_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/linker_scripts/xg27_linker_script.ld -------------------------------------------------------------------------------- /series2/linker_scripts/xg28_linker_script.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/linker_scripts/xg28_linker_script.ld -------------------------------------------------------------------------------- /series2/msc/msc_page_lock/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_page_lock/readme.txt -------------------------------------------------------------------------------- /series2/msc/msc_page_lock/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_page_lock/src/main.c -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32FG25_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32FG25_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32FG25_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32FG25_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG21_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG21_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG21_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG21_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG22_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG22_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG22_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG22_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG24_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG24_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG24_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG24_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG27_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG27_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32MG27_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32MG27_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32ZG23_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32ZG23_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32ZG23_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32ZG23_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32ZG28_msc_rw.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32ZG28_msc_rw.ewd -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/EFR32ZG28_msc_rw.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/EFR32ZG28_msc_rw.ewp -------------------------------------------------------------------------------- /series2/msc/msc_rw/iar/msc_rw.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/iar/msc_rw.eww -------------------------------------------------------------------------------- /series2/msc/msc_rw/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/readme.txt -------------------------------------------------------------------------------- /series2/msc/msc_rw/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/src/main.c -------------------------------------------------------------------------------- /series2/msc/msc_rw/src/main_xG21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/msc/msc_rw/src/main_xG21.c -------------------------------------------------------------------------------- /series2/pdm/pdm_stereo_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/pdm/pdm_stereo_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/pdm/pdm_stereo_ldma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/pdm/pdm_stereo_ldma/readme.txt -------------------------------------------------------------------------------- /series2/prs/prs_logic_unit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/prs/prs_logic_unit/readme.txt -------------------------------------------------------------------------------- /series2/prs/prs_logic_unit/src/main_ch0_ch1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/prs/prs_logic_unit/src/main_ch0_ch1.c -------------------------------------------------------------------------------- /series2/prs/prs_logic_unit/src/main_chA_chB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/prs/prs_logic_unit/src/main_chA_chB.c -------------------------------------------------------------------------------- /series2/prs/prs_logic_unit/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/prs/prs_logic_unit/src/main_xg27.c -------------------------------------------------------------------------------- /series2/rtcc/rtcc_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/rtcc/rtcc_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/rtcc/rtcc_interrupt/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/rtcc/rtcc_interrupt/src/main_xg21.c -------------------------------------------------------------------------------- /series2/rtcc/rtcc_interrupt/src/main_xg2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/rtcc/rtcc_interrupt/src/main_xg2x.c -------------------------------------------------------------------------------- /series2/timer/timer_pulse_capture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pulse_capture/readme.txt -------------------------------------------------------------------------------- /series2/timer/timer_pulse_capture/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pulse_capture/src/main.c -------------------------------------------------------------------------------- /series2/timer/timer_pwm_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pwm_dma/readme.txt -------------------------------------------------------------------------------- /series2/timer/timer_pwm_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pwm_dma/src/main.c -------------------------------------------------------------------------------- /series2/timer/timer_pwm_dma/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pwm_dma/src/main_xg28.c -------------------------------------------------------------------------------- /series2/timer/timer_pwm_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pwm_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/timer/timer_pwm_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/timer/timer_pwm_interrupt/src/main.c -------------------------------------------------------------------------------- /series2/usart/async_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/usart/async_interrupt/src/main_s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_interrupt/src/main_s2.c -------------------------------------------------------------------------------- /series2/usart/async_interrupt/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_interrupt/src/main_xg21.c -------------------------------------------------------------------------------- /series2/usart/async_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_polled/readme.txt -------------------------------------------------------------------------------- /series2/usart/async_polled/src/main_s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_polled/src/main_s2.c -------------------------------------------------------------------------------- /series2/usart/async_polled/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/async_polled/src/main_xg21.c -------------------------------------------------------------------------------- /series2/usart/spi_main_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_dma/readme.txt -------------------------------------------------------------------------------- /series2/usart/spi_main_dma/src/main_s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_dma/src/main_s2.c -------------------------------------------------------------------------------- /series2/usart/spi_main_dma/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_dma/src/main_xg21.c -------------------------------------------------------------------------------- /series2/usart/spi_main_dma/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_dma/src/main_xg28.c -------------------------------------------------------------------------------- /series2/usart/spi_main_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/usart/spi_main_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_polled/readme.txt -------------------------------------------------------------------------------- /series2/usart/spi_main_polled/src/main_s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_polled/src/main_s2.c -------------------------------------------------------------------------------- /series2/usart/spi_main_polled/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_polled/src/main_xg21.c -------------------------------------------------------------------------------- /series2/usart/spi_main_polled/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_main_polled/src/main_xg28.c -------------------------------------------------------------------------------- /series2/usart/spi_secondary_dma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_secondary_dma/readme.txt -------------------------------------------------------------------------------- /series2/usart/spi_secondary_dma/src/main_s2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_secondary_dma/src/main_s2.c -------------------------------------------------------------------------------- /series2/usart/spi_secondary_polled/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/usart/spi_secondary_polled/readme.txt -------------------------------------------------------------------------------- /series2/vdac/vdac_continuous/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/vdac/vdac_continuous/readme.txt -------------------------------------------------------------------------------- /series2/vdac/vdac_differential/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/vdac/vdac_differential/readme.txt -------------------------------------------------------------------------------- /series2/vdac/vdac_sample_off/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/vdac/vdac_sample_off/readme.txt -------------------------------------------------------------------------------- /series2/vdac/vdac_sine_wave_synch/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/vdac/vdac_sine_wave_synch/readme.txt -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_clear/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_clear/readme.txt -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_clear/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_clear/src/main.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_clear/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_clear/src/main_xg21.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_clear/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_clear/src/main_xg27.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_clear/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_clear/src/main_xg28.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_monitor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_monitor/readme.txt -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_monitor/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_monitor/src/main.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_monitor/src/main_xg21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_monitor/src/main_xg21.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_monitor/src/main_xg27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_monitor/src/main_xg27.c -------------------------------------------------------------------------------- /series2/wdog/wdog_prs_monitor/src/main_xg28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_prs_monitor/src/main_xg28.c -------------------------------------------------------------------------------- /series2/wdog/wdog_timeout_reset/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_timeout_reset/readme.txt -------------------------------------------------------------------------------- /series2/wdog/wdog_timeout_reset/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_timeout_reset/src/main.c -------------------------------------------------------------------------------- /series2/wdog/wdog_window_interrupt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_window_interrupt/readme.txt -------------------------------------------------------------------------------- /series2/wdog/wdog_window_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/series2/wdog/wdog_window_interrupt/src/main.c -------------------------------------------------------------------------------- /templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/peripheral_examples/HEAD/templates.xml --------------------------------------------------------------------------------