Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
name: Build on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-13]
os: [ubuntu-22.04, ubuntu-24.04, macos-15-intel, macos-15]
#os: [ubuntu-22.04, ubuntu-24.04, macos-13]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
Expand Down
3 changes: 2 additions & 1 deletion IDEIntegration.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ After these procedures, the project should be initialized correctlly
## Download a project

1. `cd` into the project directory
2. `mm-sdk/usr/mm/mm download`
2. `mm-sdk/usr/mm/mm download`

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The latest features would be added to this SDK first and then integrated into th

### macOS

Install XCode and open it so it could install any components that needed.
Install [swiftly](https://www.swift.org/install/macos) first, then use it to install the Swift toolchain

### Ubuntu 22.04

Expand Down Expand Up @@ -153,4 +153,4 @@ or
python3 ~/mm-sdk/mm/src/mm.py download
```

This command would find the correspond img file, copy it to the flash storage.
This command would find the correspond img file, copy it to the flash storage.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion mm/src/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def darwin_download(source):

if DARWIN_MOUNT_PATH is None:
board_name = mmp.get_board_name()
log.die('Cannot find ' + board_name + ', please make sure it is successfully mounted')
log.die('cannot find ' + board_name + ', please make sure it is successfully mounted')

log.inf(DARWIN_MOUNT_PATH + ' found')
file_name = source.name
Expand Down
2 changes: 1 addition & 1 deletion mm/src/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ def create_swiftio_bin(bin_path, out_path, out_name):
log.inf('Creating image ' + image_name + '...')
image_raw_binary = bin_path.read_bytes()
image_crc = crc32(image_raw_binary).to_bytes(4, byteorder='little')
image_path.write_bytes(image_raw_binary + image_crc)
image_path.write_bytes(image_raw_binary + image_crc)
Loading