Implementation of the CellularInterface for u-blox C030 boards with N2xx modems. Note: requires the N211 module firmware to be at least 06.57 A01.02.

Dependents:   example-ublox-cellular-interface HelloMQTT example-ublox-cellular-interface_r410M example-ublox-mbed-client ... more

Revision:
9:f6d022f5c4f5
Parent:
4:2bf3875a13f1
--- a/TESTS/unit_tests/default/main.cpp	Wed Sep 13 15:57:06 2017 +0100
+++ b/TESTS/unit_tests/default/main.cpp	Thu Sep 28 15:18:00 2017 +0100
@@ -118,7 +118,7 @@
 
 // UDP packet size limit for testing
 #ifndef MBED_CONF_APP_UDP_MAX_PACKET_SIZE
-#  define MBED_CONF_APP_UDP_MAX_PACKET_SIZE 1024
+#  define MBED_CONF_APP_UDP_MAX_PACKET_SIZE 500
 #endif
 
 // The maximum size of UDP data fragmented across
@@ -1037,20 +1037,10 @@
     Case("UDP recv sizes", test_udp_echo_recv_sizes),
 # endif
     Case("UDP async echo test", test_udp_echo_async),
-# ifndef TARGET_UBLOX_C027 // Not enough RAM on little 'ole C027 to run this test
-    Case("TCP recv sizes", test_tcp_echo_recv_sizes),
-# endif
-    Case("TCP async echo test", test_tcp_echo_async),
 # endif
 #ifndef TARGET_UBLOX_C027 // Not enough RAM on little 'ole C027 to run this test
     Case("Alloc max sockets", test_max_sockets),
 #endif
-    Case("Connect with credentials", test_connect_credentials),
-    Case("Connect with preset credentials", test_connect_preset_credentials),
-#if MBED_CONF_APP_RUN_SIM_PIN_CHANGE_TESTS
-    Case("Check SIM pin, pending", test_check_sim_pin_pending),
-    Case("Check SIM pin, immediate", test_check_sim_pin_immediate),
-#endif
 #ifndef TARGET_UBLOX_C027 // Not enough RAM on little 'ole C027 for this
     Case("Connect using local instance, must be last test", test_connect_local_instance_last_test)
 #endif