Bernard Xiong 2bf53d315d Merge pull request #4369 from mysterywolf/removeminilibc 4 anni fa
..
EFM32GG_DK3750 6c1c83e6da efm32: return empty variable instead of Return('') 11 anni fa
EFM32_Gxxx_DK 6c1c83e6da efm32: return empty variable instead of Return('') 11 anni fa
Libraries 91261e25b9 [SConscript]rename group name 5 anni fa
graphics 1761b1f4ab [BSP] fix compiling issue 8 anni fa
Readme.txt b4de7cce57 Re-normalizing the repo 13 anni fa
SConscript 6949aafc78 [BSP EFM32] Fix building issue 8 anni fa
SConstruct 7be06b67bb [add] default environment 6 anni fa
application.c a752418065 [gui] fix rtgui_dc_end_drawing() too few arguments in function call 8 anni fa
board.c b4de7cce57 Re-normalizing the repo 13 anni fa
board.h b4de7cce57 Re-normalizing the repo 13 anni fa
dev_accel.c b4de7cce57 Re-normalizing the repo 13 anni fa
dev_accel.h b4de7cce57 Re-normalizing the repo 13 anni fa
dev_keys.c ea6d73f140 *** EFM32 branch *** 13 anni fa
dev_keys.h ea6d73f140 *** EFM32 branch *** 13 anni fa
dev_lcd.c 5e3b3b19a6 [BSP] change the type of cmd. 8 anni fa
dev_lcd.h ea6d73f140 *** EFM32 branch *** 13 anni fa
dev_led.c b4de7cce57 Re-normalizing the repo 13 anni fa
dev_led.h b4de7cce57 Re-normalizing the repo 13 anni fa
dev_misc.c b4de7cce57 Re-normalizing the repo 13 anni fa
dev_misc.h b4de7cce57 Re-normalizing the repo 13 anni fa
dev_sflash.c b4de7cce57 Re-normalizing the repo 13 anni fa
dev_sflash.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_acmp.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_acmp.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_adc.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_adc.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_dma.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_dma.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_emu.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_emu.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_ethernet.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_ethernet.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_iic.c 6e7f8a36ff fixed compiling error, RT_Device_Class_I2C is not defined in rtdef.h 13 anni fa
drv_iic.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_leuart.c ea6d73f140 *** EFM32 branch *** 13 anni fa
drv_leuart.h ea6d73f140 *** EFM32 branch *** 13 anni fa
drv_rtc.c 5e3b3b19a6 [BSP] change the type of cmd. 8 anni fa
drv_rtc.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_sdcard.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_sdcard.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_timer.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_timer.h b4de7cce57 Re-normalizing the repo 13 anni fa
drv_usart.c b4de7cce57 Re-normalizing the repo 13 anni fa
drv_usart.h b4de7cce57 Re-normalizing the repo 13 anni fa
efm32g_rom.ld cc8301d0f1 update linker script for components auto initial. 12 anni fa
efm32gg_rom.ld 2a1b3e3d31 fixed the fixed the gcc compiling error in ubuntu host OS 13 anni fa
enc28j60.h b4de7cce57 Re-normalizing the repo 13 anni fa
hdl_interrupt.c b4de7cce57 Re-normalizing the repo 13 anni fa
hdl_interrupt.h b4de7cce57 Re-normalizing the repo 13 anni fa
httpd.c b4de7cce57 Re-normalizing the repo 13 anni fa
mma7455l.h b4de7cce57 Re-normalizing the repo 13 anni fa
rtconfig.h 8f7bbfa011 remove RT_USING_NOLIBC 4 anni fa
rtconfig.py 8160a4089a fixed #1261, modify "axf" to "elf" in rtconfig.py for GCC Toolchains configuration. 7 anni fa
start_gcc.S b4de7cce57 Re-normalizing the repo 13 anni fa
startup.c a22decb71b 【优化】在代码中移除 rt_system_object_init/rt_system_tick_init 的调用。 5 anni fa

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