the contents of boot.py
Posted: Mon May 02, 2016 11:23 pm
This is the contents of boot.py, as indicated at this url -> http://micropython.org/doc/tut-script
import pyb
#pyb.main('main.py') # main script to run after this one
#pyb.usb_mode('CDC+MSC') # act as a serial and a storage device
#pyb.usb_mode('CDC+HID') # act as a serial device and a mouse
Since everything is commented out, how is it that main.py still gets executed?
import pyb
#pyb.main('main.py') # main script to run after this one
#pyb.usb_mode('CDC+MSC') # act as a serial and a storage device
#pyb.usb_mode('CDC+HID') # act as a serial device and a mouse
Since everything is commented out, how is it that main.py still gets executed?