mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			Fixed cellular backward compatiblity.
							parent
							
								
									d643034941
								
							
						
					
					
						commit
						a3589ed41f
					
				| 
						 | 
					@ -22,10 +22,13 @@ using namespace mbed;
 | 
				
			||||||
MBED_DEPRECATED_SINCE("mbed-os-5.9", "This API will be deprecated, use CellularBase::get_default_instance() instead.")
 | 
					MBED_DEPRECATED_SINCE("mbed-os-5.9", "This API will be deprecated, use CellularBase::get_default_instance() instead.")
 | 
				
			||||||
class OnboardCellularInterface : public CellularBase {
 | 
					class OnboardCellularInterface : public CellularBase {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    OnboardCellularInterface()
 | 
					    OnboardCellularInterface(bool debug = false)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        context = CellularContext::get_default_instance();
 | 
					        context = CellularContext::get_default_instance();
 | 
				
			||||||
        MBED_ASSERT(context != NULL);
 | 
					        MBED_ASSERT(context != NULL);
 | 
				
			||||||
 | 
					        CellularDevice *dev = CellularDevice::get_default_instance();
 | 
				
			||||||
 | 
					        MBED_ASSERT(dev != NULL);
 | 
				
			||||||
 | 
					        dev->modem_debug_on(debug);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
public: // from NetworkInterface
 | 
					public: // from NetworkInterface
 | 
				
			||||||
    virtual nsapi_error_t set_blocking(bool blocking)
 | 
					    virtual nsapi_error_t set_blocking(bool blocking)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue