rt-thread-official/bsp/efm32
Meco Man 94a9332915 [rtc] 移除rtc_core.c/.h 将内容转移到rtc.c/.h 2021-07-30 03:24:50 +08:00
..
EFM32GG_DK3750 [efm32] auto formatted 2021-03-27 15:16:57 +08:00
EFM32_Gxxx_DK [efm32] auto formatted 2021-03-27 15:16:57 +08:00
Libraries [efm32] auto formatted 2021-03-27 15:16:57 +08:00
graphics [efm32] auto formatted 2021-03-27 15:16:57 +08:00
Readme.txt
SConscript
SConstruct [add] default environment 2019-10-22 16:48:57 +08:00
application.c
board.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
board.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_accel.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_accel.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_keys.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_keys.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_lcd.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_lcd.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
dev_led.c
dev_led.h
dev_misc.c
dev_misc.h
dev_sflash.c
dev_sflash.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_acmp.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_acmp.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_adc.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_adc.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_dma.c
drv_dma.h
drv_emu.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_emu.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_ethernet.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_ethernet.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_iic.c
drv_iic.h
drv_leuart.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_leuart.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_rtc.c [rtc] 移除rtc_core.c/.h 将内容转移到rtc.c/.h 2021-07-30 03:24:50 +08:00
drv_rtc.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_sdcard.c
drv_sdcard.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_timer.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_timer.h
drv_usart.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
drv_usart.h
efm32g_rom.ld
efm32gg_rom.ld
enc28j60.h [bsp]update GPL license to Apache-2.0, and format files 2021-04-09 10:52:34 +08:00
hdl_interrupt.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
hdl_interrupt.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
httpd.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00
mma7455l.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
rtconfig.h [efm32] auto formatted 2021-03-27 15:16:57 +08:00
rtconfig.py
start_gcc.S
startup.c [efm32] auto formatted 2021-03-27 15:16:57 +08:00

Readme.txt

 - To test the low power mode:

 - To test the ELM FatFs:
1. copy "bsp/efm32/copy_this_file_shell.c" to "components/finsh/"
2. rename it to "shell.c" replacing the original file
3. and then compile

 - To test the lwIP:
1. You should have a ENC28J60 Ethernet controller and connect it with your board properly
2. Please turn on the following defines in "rtconfig.h":
      #define EFM32_USING_ETHERNET
      #define RT_USING_LWIP
      #RT_LWIP_*
3. please also turn on the following define to use simple http server
      #define EFM32_USING_ETH_HTTPD
   or turn on the following defines to use EFM32 Ethernet utility functions (due to memory limitation, you may not turn on both)
      #define EFM32_USING_ETH_UTILS
      #define hostName 		"onelife.dyndns.org"	/* Please change to your own host name */
      #define userPwdB64 	"dXNlcjpwYXNzd2Q="	/* Please change to your own user name and password (base 64 encoding) */
4. and then compile