Extending the X_NUCLEO_IDW01M1 to allow configuration of the board as an access point

Dependents:   X_NUCLEO_IDW01M1_AP_Test

Fork of X_NUCLEO_IDW01M1 by ST

Revision:
12:3799f8475c8a
Parent:
8:0f302a13e21b
Child:
22:a1276b7d3b2d
--- a/Spwf/wifi_driver.c	Sat May 14 07:28:29 2016 +0000
+++ b/Spwf/wifi_driver.c	Sat May 14 08:31:39 2016 +0000
@@ -45,16 +45,34 @@
 #include "string.h"
 #include "wifi_driver.h"
 
+/**
+* @brief  Wi-Fi System Tick IRQ handler
+*         retrieves byte(s) from the ring buffer
+* @param  None
+* @retval None
+*/
 void Wifi_ticker(void)
 {
   Wifi_SysTick_Isr();
 }
 
+/**
+* @brief  Wi-Fi Scheduler handler
+*         Fetches events from event buffer/makes callbacks to User
+* @param  None
+* @retval None
+*/
 void Wifi_scheduler(void)
 { 
   Wifi_TIM_Handler();
 }
 
+/**
+* @brief  UART RX IRQ handler
+*         stores a byte to the ring buffer
+* @param  None
+* @retval None
+*/
 void Rx_irq_handler(void)
 {