diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/SDdatalogger/boot.py | 4 | ||||
-rw-r--r-- | examples/embedding/mpconfigport_minimal.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/examples/SDdatalogger/boot.py b/examples/SDdatalogger/boot.py index aa943fde93..4ac94bbaa4 100644 --- a/examples/SDdatalogger/boot.py +++ b/examples/SDdatalogger/boot.py @@ -16,10 +16,10 @@ pyb.LED(3).off() # indicate that we finished waiting for the swit pyb.LED(4).on() # indicate that we are selecting the mode if switch_value: - pyb.usb_mode('CDC+MSC') + pyb.usb_mode('VCP+MSC') pyb.main('cardreader.py') # if switch was pressed, run this else: - pyb.usb_mode('CDC+HID') + pyb.usb_mode('VCP+HID') pyb.main('datalogger.py') # if switch wasn't pressed, run this pyb.LED(4).off() # indicate that we finished selecting the mode diff --git a/examples/embedding/mpconfigport_minimal.h b/examples/embedding/mpconfigport_minimal.h index 9f080ab0e1..90011b3f81 100644 --- a/examples/embedding/mpconfigport_minimal.h +++ b/examples/embedding/mpconfigport_minimal.h @@ -127,9 +127,6 @@ typedef long long mp_off_t; typedef long mp_off_t; #endif -typedef void *machine_ptr_t; // must be of pointer size -typedef const void *machine_const_ptr_t; // must be of pointer size - // We need to provide a declaration/definition of alloca() #ifdef __FreeBSD__ #include <stdlib.h> |