diff --git a/internal_filesystem/lib/mpos/board/lilygo_t_watch_s3_plus.py b/internal_filesystem/lib/mpos/board/lilygo_t_watch_s3_plus.py index a9f6cfc0..87557cdc 100644 --- a/internal_filesystem/lib/mpos/board/lilygo_t_watch_s3_plus.py +++ b/internal_filesystem/lib/mpos/board/lilygo_t_watch_s3_plus.py @@ -108,8 +108,7 @@ print("(x,y,z): ", sensor.get_xyz()) # TODO: # - battery -# - IMU -# - vibrator +# - real IMU driver (instead of proof-of-concept above) # - GPS # - LoRa diff --git a/internal_filesystem/lib/mpos/main.py b/internal_filesystem/lib/mpos/main.py index e2be0bad..14082065 100644 --- a/internal_filesystem/lib/mpos/main.py +++ b/internal_filesystem/lib/mpos/main.py @@ -101,7 +101,7 @@ def detect_board(): return "lilygo_t_display_s3" # display gets confused by the i2c stuff below print("odroid_go ?") - if unique_id_prefixes[0] == 0x30: + if unique_id_prefixes == b'\x30\xae\xa4': return "odroid_go" print("fri3d_2026 ?") diff --git a/scripts/make_image.sh b/scripts/make_image.sh index f916393a..cb6841e2 100755 --- a/scripts/make_image.sh +++ b/scripts/make_image.sh @@ -3,7 +3,7 @@ mydir=$(readlink -f "$0") mydir=$(dirname "$mydir") # This needs python and the esptool -python3 lvgl_micropython/lib/esp-idf/components/partition_table/gen_esp32part.py --flash-size 16MB partitions_with_retro-go.csv > partitions_with_retro-go_16mb.bin +python3 lvgl_micropython/lib/esp-idf/components/partition_table/gen_esp32part.py --flash-size 16MB partitions_with_retro-go_16mb.csv > partitions_with_retro-go_16mb.bin #python3 lvgl_micropython/lib/esp-idf/components/partition_table/gen_esp32part.py --flash-size 4MB partitions_4mb.csv > partitions_4mb.bin #python3 lvgl_micropython/lib/esp-idf/components/partition_table/gen_esp32part.py --flash-size 8MB partitions_8mb.csv > partitions_8mb.bin