kopia lustrzana https://github.com/pimoroni/pimoroni-pico
Fix get_data_buf to request *some* data
Uses an arbitrarily sized, dynamically alloc'd buffer. This should *probably* do the legwork to get the whole buffer and give it to Python without needing multiple calls.pull/126/head
rodzic
6ac8ea1db0
commit
9e2f0ebf09
|
@ -913,10 +913,12 @@ mp_obj_t picowireless_get_data_buf(size_t n_args, const mp_obj_t *pos_args, mp_m
|
|||
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
||||
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
||||
|
||||
uint8_t *data = nullptr;
|
||||
uint16_t *data_len = nullptr;
|
||||
if(wireless->get_data_buf(args[ARG_sock].u_int, data, data_len)) {
|
||||
return mp_obj_new_bytes(data, *data_len);
|
||||
uint8_t *data = (uint8_t *)malloc(512);
|
||||
uint16_t data_len = 512;
|
||||
if(wireless->get_data_buf(args[ARG_sock].u_int, data, &data_len)) {
|
||||
mp_obj_t response = mp_obj_new_bytes(data, data_len);
|
||||
free(data);
|
||||
return response;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Ładowanie…
Reference in New Issue