parent
d36c79ccd9
commit
398fdd4638
11
LICENSE
11
LICENSE
|
@ -1,13 +1,4 @@
|
||||||
Permission is hereby granted, without written agreement and without
|
˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙OPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||||
license or royalty fees, to use, copy, modify, and distribute this
|
|
||||||
software and its documentation for any purpose, provided that the
|
|
||||||
above copyright notice and the following two paragraphs appear in
|
|
||||||
all copies of this software.
|
|
||||||
|
|
||||||
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
||||||
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
||||||
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
||||||
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
||||||
DAMAGE.
|
DAMAGE.
|
||||||
|
|
||||||
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
||||||
|
|
28
boot.py
28
boot.py
|
@ -1,16 +1,16 @@
|
||||||
# from board import *
|
from board import *
|
||||||
# import digitalio
|
import digitalio
|
||||||
# import storage
|
import storage
|
||||||
|
|
||||||
# noStorageStatus = False
|
noStorageStatus = False
|
||||||
# noStoragePin = digitalio.DigitalInOut(GP0)
|
noStoragePin = digitalio.DigitalInOut(GP15)
|
||||||
# noStoragePin.switch_to_input(pull=digitalio.Pull.UP)
|
noStoragePin.switch_to_input(pull=digitalio.Pull.UP)
|
||||||
# noStorageStatus = not noStoragePin.value
|
noStorageStatus = not noStoragePin.value
|
||||||
|
|
||||||
# if(noStorageStatus == False):
|
if(noStorageStatus == False):
|
||||||
# # don't show USB drive to host PC
|
# don't show USB drive to host PC
|
||||||
# storage.disable_usb_drive()
|
storage.disable_usb_drive()
|
||||||
# print("Disabling USB drive")
|
print("Disabling USB drive")
|
||||||
# else:
|
else:
|
||||||
# # normal boot
|
# normal boot
|
||||||
# print("USB drive enabled")
|
print("USB drive enabled")
|
||||||
|
|
Loading…
Reference in New Issue