Skip to content

Commit 0c85910

Browse files
authored
Update Micropython version (#198)
* Update MPY version * Update esp-idf * Fix typo in esp-idf script * Use a real timer in the beeper * Bump version
1 parent 1b4ac7e commit 0c85910

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

MicroPython

Submodule MicroPython updated 2141 files

esp-idf

Submodule esp-idf updated 10929 files

src/lib/hydra/beeper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self):
7777
self.audio = get_instance(Audio)
7878
self.config = get_instance(Config)
7979
self.note_buf = []
80-
self.timer = Timer(-1)
80+
self.timer = Timer(3)
8181

8282

8383
def stop(self):

tools/parse_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122

123123
# TODO: This information, along with much of the information listed above,
124124
# should probably be moved into a separate config file.
125-
MICROHYDRA_VERSION = (2, 3, 0)
125+
MICROHYDRA_VERSION = (2, 5, 0)
126126

127127

128128
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MAIN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tools/setup_esp_idf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ def launch_wsl():
2525
print("Running in Windows, attempting to use WSL...")
2626
launch_wsl()
2727
else:
28-
print("Building mpy_cross...")
28+
print("Installing esp-idf...")
2929
setup_idf()

0 commit comments

Comments
 (0)