• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..21-Aug-2025-

EFM32GG_DK3750/21-Aug-2025-

EFM32_Gxxx_DK/21-Aug-2025-

Libraries/21-Aug-2025-

graphics/21-Aug-2025-

Readme.txt A D21-Aug-2025963 2018

SConscript A D21-Aug-2025798 2016

SConstruct A D21-Aug-20251.3 KiB3728

application.c A D21-Aug-202522 KiB818625

board.c A D21-Aug-202513.2 KiB410190

board.h A D21-Aug-20257.6 KiB229160

dev_accel.c A D21-Aug-202525.5 KiB890648

dev_accel.h A D21-Aug-20254.3 KiB11875

dev_keys.c A D21-Aug-20258.5 KiB321213

dev_keys.h A D21-Aug-20251.1 KiB3614

dev_lcd.c A D21-Aug-202520.2 KiB683377

dev_lcd.h A D21-Aug-2025827 234

dev_led.c A D21-Aug-20255.6 KiB215111

dev_led.h A D21-Aug-20251.6 KiB4421

dev_misc.c A D21-Aug-20256.5 KiB19985

dev_misc.h A D21-Aug-2025815 246

dev_sflash.c A D21-Aug-202510.3 KiB406267

dev_sflash.h A D21-Aug-20253.3 KiB10075

drv_acmp.c A D21-Aug-202511 KiB415225

drv_acmp.h A D21-Aug-20251.3 KiB4724

drv_adc.c A D21-Aug-202525.9 KiB829521

drv_adc.h A D21-Aug-20251.9 KiB6843

drv_dma.c A D21-Aug-20252.2 KiB6221

drv_dma.h A D21-Aug-2025738 224

drv_emu.c A D21-Aug-20256 KiB253168

drv_emu.h A D21-Aug-20251.5 KiB4725

drv_ethernet.c A D21-Aug-202536 KiB1,321770

drv_ethernet.h A D21-Aug-20251.2 KiB3714

drv_iic.c A D21-Aug-202523.9 KiB875519

drv_iic.h A D21-Aug-20252.1 KiB6831

drv_leuart.c A D21-Aug-202530 KiB1,081655

drv_leuart.h A D21-Aug-20251.9 KiB6833

drv_rtc.c A D21-Aug-20255.3 KiB19696

drv_rtc.h A D21-Aug-2025783 234

drv_sdcard.c A D21-Aug-202537.3 KiB1,327845

drv_sdcard.h A D21-Aug-20253 KiB7346

drv_timer.c A D21-Aug-202510.2 KiB369196

drv_timer.h A D21-Aug-20251.1 KiB4118

drv_usart.c A D21-Aug-202548.3 KiB1,6581,161

drv_usart.h A D21-Aug-20252.5 KiB8040

efm32g_rom.ld A D21-Aug-20254.2 KiB177150

efm32gg_rom.ld A D21-Aug-20253.5 KiB168143

enc28j60.h A D21-Aug-202510.3 KiB310243

hdl_interrupt.c A D21-Aug-202523.4 KiB872400

hdl_interrupt.h A D21-Aug-20251.7 KiB5930

httpd.c A D21-Aug-20257.9 KiB23199

mma7455l.h A D21-Aug-20255.2 KiB10683

rtconfig.h A D21-Aug-202511.5 KiB363187

rtconfig.py A D21-Aug-20252.3 KiB8061

start_gcc.S A D21-Aug-20252.5 KiB8440

startup.c A D21-Aug-20254.4 KiB16357

Readme.txt

1 - To test the low power mode:
2
3 - To test the ELM FatFs:
41. copy "bsp/efm32/copy_this_file_shell.c" to "components/finsh/"
52. rename it to "shell.c" replacing the original file
63. and then compile
7
8 - To test the lwIP:
91. You should have a ENC28J60 Ethernet controller and connect it with your board properly
102. Please turn on the following defines in "rtconfig.h":
11      #define EFM32_USING_ETHERNET
12      #define RT_USING_LWIP
13      #RT_LWIP_*
143. please also turn on the following define to use simple http server
15      #define EFM32_USING_ETH_HTTPD
16   or turn on the following defines to use EFM32 Ethernet utility functions (due to memory limitation, you may not turn on both)
17      #define EFM32_USING_ETH_UTILS
18      #define hostName 		"onelife.dyndns.org"	/* Please change to your own host name */
19      #define userPwdB64 	"dXNlcjpwYXNzd2Q="	/* Please change to your own user name and password (base 64 encoding) */
204. and then compile