mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12178 from tymoteuszblochmobica/lpctls
Fixes for LPC55S69_NS TLS testspull/12055/head
commit
4feca5942a
|
@ -557,6 +557,9 @@ nsapi_error_t ESP8266::open_tcp(int id, const char *addr, int port, int keepaliv
|
|||
static const char *type = "TCP";
|
||||
bool done = false;
|
||||
|
||||
if (!addr) {
|
||||
return NSAPI_ERROR_PARAMETER;
|
||||
}
|
||||
_smutex.lock();
|
||||
|
||||
// process OOB so that _sock_i reflects the correct state of the socket
|
||||
|
|
|
@ -126,7 +126,7 @@ define region CSTACK_region = mem:[from m_data_end-__size_cstack__+1 to m_data_e
|
|||
define region m_interrupts_ram_region = mem:[from m_interrupts_ram_start to m_interrupts_ram_end];
|
||||
|
||||
define block CSTACK with alignment = 8, size = __size_cstack__ { };
|
||||
define block HEAP with alignment = 8, size = __size_heap__ { };
|
||||
define block HEAP with expanding size, alignment = 8, minimum size = __heap_size__ { };
|
||||
define block RW { readwrite };
|
||||
define block ZI { zi };
|
||||
|
||||
|
|
Loading…
Reference in New Issue