Compare commits

..

No commits in common. "c3b50d46e1a5b9789e1b48fb29debcede62c60a1" and "5fb35c96cb120294fcc27ee365919b99e2b5ad46" have entirely different histories.

3 changed files with 0 additions and 19 deletions

View File

@ -1,10 +0,0 @@
#!/bin/bash
mkdir workspace
cd workspace
git clone https://github.com/micropython/micropython.git
cd micropython
make -C mpy-cross
cd ports/rp2
make submodules
make BOARD=RPI_PICO FROZEN_MANIFEST=../../../../src/dimensioner/manifest.py

View File

@ -87,8 +87,6 @@ ZERO_BUTTON_PIN = 13 # Pin to read if hardware zero button is pressed
UNITS_BUTTON_PIN = 14 # Pin to read if hardware unit change button is pressed UNITS_BUTTON_PIN = 14 # Pin to read if hardware unit change button is pressed
FIRMWARE_VERSION = "1.0" FIRMWARE_VERSION = "1.0"
machine.freq(240000000) # Set CPU to 240MHz (about twice as fast as default)
# #
# USB configuration # USB configuration
# #

View File

@ -1,7 +0,0 @@
# Build manifest for PostalPoint Parcel Dimensioner
require("usb-device-hid")
require("ssd1306")
module("dimensioner_utils.py")
module("dimensioner_screen.py")
module("ssd1306big.py")
module("main.py")