mirror of https://github.com/ARMmbed/mbed-os.git
More access modifier changes
parent
b59228988c
commit
a457b80e81
|
@ -102,6 +102,7 @@ protected:
|
||||||
virtual bool get_context();
|
virtual bool get_context();
|
||||||
pdp_type_t string_to_pdp_type(const char *pdp_type);
|
pdp_type_t string_to_pdp_type(const char *pdp_type);
|
||||||
AT_CellularBase::CellularProperty pdp_type_t_to_cellular_property(pdp_type_t pdp_type);
|
AT_CellularBase::CellularProperty pdp_type_t_to_cellular_property(pdp_type_t pdp_type);
|
||||||
|
bool set_new_context(int cid);
|
||||||
private:
|
private:
|
||||||
#if NSAPI_PPP_AVAILABLE
|
#if NSAPI_PPP_AVAILABLE
|
||||||
nsapi_error_t open_data_channel();
|
nsapi_error_t open_data_channel();
|
||||||
|
@ -113,7 +114,6 @@ private:
|
||||||
nsapi_error_t find_and_activate_context();
|
nsapi_error_t find_and_activate_context();
|
||||||
nsapi_error_t activate_ip_context();
|
nsapi_error_t activate_ip_context();
|
||||||
void check_and_deactivate_context();
|
void check_and_deactivate_context();
|
||||||
bool set_new_context(int cid);
|
|
||||||
nsapi_error_t delete_current_context();
|
nsapi_error_t delete_current_context();
|
||||||
nsapi_error_t check_operation(nsapi_error_t err, ContextOperation op);
|
nsapi_error_t check_operation(nsapi_error_t err, ContextOperation op);
|
||||||
void ciot_opt_cb(mbed::CellularNetwork::CIoT_Supported_Opt ciot_opt);
|
void ciot_opt_cb(mbed::CellularNetwork::CIoT_Supported_Opt ciot_opt);
|
||||||
|
@ -121,12 +121,12 @@ private:
|
||||||
private:
|
private:
|
||||||
bool _is_connected;
|
bool _is_connected;
|
||||||
ContextOperation _current_op;
|
ContextOperation _current_op;
|
||||||
char _found_apn[MAX_APN_LENGTH];
|
|
||||||
FileHandle *_fh;
|
FileHandle *_fh;
|
||||||
rtos::Semaphore _semaphore;
|
rtos::Semaphore _semaphore;
|
||||||
rtos::Semaphore _cp_opt_semaphore;
|
rtos::Semaphore _cp_opt_semaphore;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
char _found_apn[MAX_APN_LENGTH];
|
||||||
// flag indicating if CP was requested to be setup
|
// flag indicating if CP was requested to be setup
|
||||||
bool _cp_req;
|
bool _cp_req;
|
||||||
// flag indicating if Non-IP context was requested to be setup
|
// flag indicating if Non-IP context was requested to be setup
|
||||||
|
|
Loading…
Reference in New Issue