aboutsummaryrefslogtreecommitdiff
path: root/stmhal/can.c
diff options
context:
space:
mode:
authorDamien George2014-10-31 01:11:55 +0000
committerDamien George2014-10-31 01:12:54 +0000
commit1a8573ed0ed72825a5cedc6a07277535aa2630fa (patch)
tree91231aea68479ed35266884ff9b413c4419190e3 /stmhal/can.c
parent47f349e7dea25fd7b2dd9d387654418aeb7de0bd (diff)
stmhal: Update some inlined docs for network and CAN.
Diffstat (limited to 'stmhal/can.c')
-rw-r--r--stmhal/can.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/stmhal/can.c b/stmhal/can.c
index f0cd26f56..de1ef3ecd 100644
--- a/stmhal/can.c
+++ b/stmhal/can.c
@@ -414,10 +414,6 @@ STATIC const mp_map_elem_t pyb_can_locals_dict_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_recv), (mp_obj_t)&pyb_can_recv_obj },
// class constants
- /// \constant MASTER - for initialising the bus to master mode
- /// \constant SLAVE - for initialising the bus to slave mode
- /// \constant MSB - set the first bit to MSB
- /// \constant LSB - set the first bit to LSB
// Note: we use the ST constants >> 4 so they fit in a small-int. The
// right-shift is undone when the constants are used in the init function.
{ MP_OBJ_NEW_QSTR(MP_QSTR_NORMAL), MP_OBJ_NEW_SMALL_INT(CAN_MODE_NORMAL >> 4) },