
demo of the murata wifi chip. This demo tries to connect to an open wifi access point and prints out all the relevant information about the connection. It then scans all wifi access points nearby and reports their information.
Dependencies: SNICInterface mbed-rtos mbed
Fork of SNIC-xively-jumpstart-demo by
app_board_io.cpp@22:e567f0d4b05d, 2014-07-15 (annotated)
- Committer:
- kishino
- Date:
- Tue Jul 15 09:56:43 2014 +0000
- Revision:
- 22:e567f0d4b05d
- Parent:
- 11:bdf601a405fc
The platform-dependent code was modified to implemented in ifdef.; The process of debug log output was changed to macro.;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
xively | 7:0eff5db44b8b | 1 | #include "app_board_io.h" |
kishino | 22:e567f0d4b05d | 2 | #include "C12832.h" |
xively | 7:0eff5db44b8b | 3 | |
kishino | 22:e567f0d4b05d | 4 | extern C12832 lcd; |
xively | 7:0eff5db44b8b | 5 | |
xively | 7:0eff5db44b8b | 6 | extern "C" void lcd_printf( const char* fmt, ... ) |
xively | 7:0eff5db44b8b | 7 | { |
xively | 7:0eff5db44b8b | 8 | char buffer[ 64 ]; |
xively | 7:0eff5db44b8b | 9 | |
xively | 7:0eff5db44b8b | 10 | va_list ap; |
xively | 7:0eff5db44b8b | 11 | va_start( ap, fmt ); |
xively | 7:0eff5db44b8b | 12 | vsnprintf( buffer, 64, fmt, ap ); |
xively | 7:0eff5db44b8b | 13 | va_end( ap ); |
xively | 7:0eff5db44b8b | 14 | |
xively | 7:0eff5db44b8b | 15 | lcd.cls(); |
xively | 7:0eff5db44b8b | 16 | lcd.locate( 0, 3 ); |
xively | 7:0eff5db44b8b | 17 | lcd.printf( buffer ); |
xively | 7:0eff5db44b8b | 18 | //wait( 1.0 ); |
xively | 7:0eff5db44b8b | 19 | } |