summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/bufhelper.c
blob: 5612a048dc2bbb5f4047e9a4142e1e91318156f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "misc.h"
#include "mpconfig.h"
#include "qstr.h"
#include "obj.h"
#include "bufhelper.h"

void pyb_buf_get_for_send(mp_obj_t o, mp_buffer_info_t *bufinfo, uint8_t *tmp_data) {
    if (MP_OBJ_IS_INT(o)) {
        tmp_data[0] = mp_obj_get_int(o);
        bufinfo->buf = tmp_data;
        bufinfo->len = 1;
        bufinfo->typecode = 'B';
    } else {
        mp_get_buffer_raise(o, bufinfo, MP_BUFFER_READ);
    }
}

mp_obj_t pyb_buf_get_for_recv(mp_obj_t o, mp_buffer_info_t *bufinfo) {
    if (MP_OBJ_IS_INT(o)) {
        // allocate a new bytearray of given length
        bufinfo->len = mp_obj_get_int(o);
        bufinfo->typecode = 'B';
        return mp_obj_str_builder_start(&mp_type_bytes, bufinfo->len, (byte**)&bufinfo->buf);
    } else {
        // get the existing buffer
        mp_get_buffer_raise(o, bufinfo, MP_BUFFER_WRITE);
        return MP_OBJ_NULL;
    }
}