cc3200: Add created sockets to the registry.

make-uniq
danicampora 2015-10-22 16:21:33 +02:00
parent 9ebd4dabf2
commit 0212dc65b7
1 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,8 @@ STATIC mp_obj_t socket_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n_
if (wlan_socket_socket(s, &_errno) != 0) {
nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(-_errno)));
}
// add the socket to the list
modusocket_socket_add(s->sock_base.sd, true);
return s;
}