You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Guo XIn
291e661666
|
5 months ago | |
---|---|---|
.. | ||
EFM32GG_DK3750 | 5 months ago | |
EFM32_Gxxx_DK | 5 months ago | |
Libraries | 5 months ago | |
graphics | 5 months ago | |
Readme.txt | 5 months ago | |
SConscript | 5 months ago | |
SConstruct | 5 months ago | |
application.c | 5 months ago | |
board.c | 5 months ago | |
board.h | 5 months ago | |
dev_accel.c | 5 months ago | |
dev_accel.h | 5 months ago | |
dev_keys.c | 5 months ago | |
dev_keys.h | 5 months ago | |
dev_lcd.c | 5 months ago | |
dev_lcd.h | 5 months ago | |
dev_led.c | 5 months ago | |
dev_led.h | 5 months ago | |
dev_misc.c | 5 months ago | |
dev_misc.h | 5 months ago | |
dev_sflash.c | 5 months ago | |
dev_sflash.h | 5 months ago | |
drv_acmp.c | 5 months ago | |
drv_acmp.h | 5 months ago | |
drv_adc.c | 5 months ago | |
drv_adc.h | 5 months ago | |
drv_dma.c | 5 months ago | |
drv_dma.h | 5 months ago | |
drv_emu.c | 5 months ago | |
drv_emu.h | 5 months ago | |
drv_ethernet.c | 5 months ago | |
drv_ethernet.h | 5 months ago | |
drv_iic.c | 5 months ago | |
drv_iic.h | 5 months ago | |
drv_leuart.c | 5 months ago | |
drv_leuart.h | 5 months ago | |
drv_rtc.c | 5 months ago | |
drv_rtc.h | 5 months ago | |
drv_sdcard.c | 5 months ago | |
drv_sdcard.h | 5 months ago | |
drv_timer.c | 5 months ago | |
drv_timer.h | 5 months ago | |
drv_usart.c | 5 months ago | |
drv_usart.h | 5 months ago | |
efm32g_rom.ld | 5 months ago | |
efm32gg_rom.ld | 5 months ago | |
enc28j60.h | 5 months ago | |
hdl_interrupt.c | 5 months ago | |
hdl_interrupt.h | 5 months ago | |
httpd.c | 5 months ago | |
mma7455l.h | 5 months ago | |
rtconfig.h | 5 months ago | |
rtconfig.py | 5 months ago | |
start_gcc.S | 5 months ago | |
startup.c | 5 months ago |
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