cc3200: Move wlan_init0() to the boot section.

This one creates a semaphore, therefore it must be executed only
after a hard reset (or when coming out of hibernation).
pull/1209/head
Daniel Campora 2015-04-29 16:01:51 +02:00
rodzic d8713d78f5
commit 6f218d7472
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -379,6 +379,7 @@ void SimpleLinkSockEventHandler(SlSockEvent_t *pSock) {
// SimpleLink Asynchronous Event Handlers -- End
//*****************************************************************************
__attribute__ ((section (".boot")))
void wlan_init0 (void) {
// create the wlan lock
ASSERT(OSI_OK == sl_LockObjCreate(&wlan_LockObj, "WlanLock"));

Wyświetl plik

@ -126,7 +126,6 @@ soft_reset:
pin_init0();
readline_init0();
mod_network_init0();
wlan_init0();
#if MICROPY_HW_ENABLE_RNG
rng_init0();
#endif
@ -273,6 +272,9 @@ STATIC void mptask_pre_init (void) {
// this one allocates memory for the nvic vault
pybsleep_pre_init();
// this one allocates mameory for the WLAN semaphore
wlan_init0();
#if MICROPY_HW_HAS_SDCARD
pybsd_init0();
#endif