Library for controlling the WNC 14A2A from the K64F Freedom Board. It fulfills platform specific pure virtual methods from the WncControllerLibrary.
Dependencies: WncControllerLibrary
Fork of WncControllerK64F by
Use this interface to connect to and interact with the WNC M14A2A LTE Cellular Data Module which is provided by Wistron NeWeb Corporation (WNC) when using ARMmbed v5. The interface provides a Networking interface that can be used with the AT&T Cellular IoT Starter Kit that is sold by Avnet (http://cloudconnectkits.org/product/att-cellular-iot-starter-kit).
To demonstrate the use of the Interface, a series of example programs have been provided. Links to these examples are provided below. All examples can be compiled using both the on-line compiler and the ARMmbed CLI (command line interface, see https://github.com/ARMmbed/mbed-cli)
NOTE: This library/class is specific to the AT&T Cellular IoT Starter Kit which uses a FRDM-K64F. The users mbed.org compiler should be configured to use the FRDM-K64F platform.
Example Programs
Import the example programs below and follow the README.md in each to run the example program.
- several examples of the interface using easy_connect.
- SMS demonstration program that demonstrates SMS usage
- Sockets demonstration program demonstrating using TCP sockets to interact with others
- As new example program are developed, this README will be updated
WNC FIRWARE VERSION
The WNCInterface class currently supports the following version(s):
- MPSS: M14A2A_v11.21.162331 APSS: M14A2A_v11.27.162331
License
This library is released under the Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License and may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Revision 32:93703ebed512, committed 2017-04-19
- Comitter:
- JMF
- Date:
- Wed Apr 19 15:18:48 2017 +0000
- Parent:
- 31:d9558aefb9e0
- Child:
- 33:0ec8be33d86d
- Commit message:
- Debug output was using the UART which caused collisions with stdio who may be using the same UART. Implemented a WNCDebug class that allows the user to define where to send the debug info--UART, STDOUT, STDERR.
Changed in this revision
| WncControllerK64F.cpp | Show annotated file Show diff for this revision Revisions of this file |
| WncControllerK64F.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/WncControllerK64F.cpp Mon Apr 17 23:58:40 2017 +0000
+++ b/WncControllerK64F.cpp Wed Apr 19 15:18:48 2017 +0000
@@ -30,7 +30,7 @@
using namespace WncControllerK64F_fk;
-WncControllerK64F::WncControllerK64F(struct WncGpioPinListK64F * pPins, BufferedSerial * wnc_uart, BufferedSerial * debug_uart)
+WncControllerK64F::WncControllerK64F(struct WncGpioPinListK64F * pPins, BufferedSerial * wnc_uart, WNCDebug * debug_uart)
{
m_logTimer.start(); // Start the log timer now!
m_pDbgUart = debug_uart;
--- a/WncControllerK64F.h Mon Apr 17 23:58:40 2017 +0000
+++ b/WncControllerK64F.h Wed Apr 19 15:18:48 2017 +0000
@@ -32,7 +32,7 @@
#include <string>
#include <stdint.h>
#include "mbed.h"
-#include "BufferedSerial.h"
+#include "WNCDebug.h"
#include "WncController.h"
namespace WncControllerK64F_fk {
@@ -77,7 +77,7 @@
* @param wnc_uart - a pointer to the serial uart that is used to communicate with the WNC modem.
* @param debug_uart - a pointer to a serial uart for the debug output to go out of, if NULL debug will not be output.
*/
- WncControllerK64F(struct WncGpioPinListK64F * pPins, BufferedSerial * wnc_uart, BufferedSerial * debug_uart = NULL);
+ WncControllerK64F(struct WncGpioPinListK64F * pPins, BufferedSerial * wnc_uart, WNCDebug * debug_uart = NULL);
/**
*
@@ -116,7 +116,7 @@
virtual void stopTimerB(void);
virtual int getTimerTicksB_mS(void);
- BufferedSerial * m_pDbgUart;
+ WNCDebug * m_pDbgUart;
BufferedSerial * m_pWncUart;
WncGpioPinListK64F m_gpioPinList;
Timer m_logTimer;

Avnet ATT WNC 14A2A Cellular IoT Kit