mirror of
https://github.com/pine64/blisp.git
synced 2024-12-22 06:20:12 +00:00
Compare commits
4 Commits
07f8e92f6e
...
b8f0875282
Author | SHA1 | Date | |
---|---|---|---|
|
b8f0875282 | ||
|
a67a771bd6 | ||
|
1cef97ca89 | ||
|
67bd1bd468 |
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -37,7 +37,7 @@ jobs:
|
||||
- name: Upload results
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: blips-windows-x86_64.zip
|
||||
name: blips-windows-x86_64
|
||||
path: |
|
||||
build/tools/blisp/Release/blisp.exe
|
||||
if-no-files-found: error
|
||||
@ -58,7 +58,7 @@ jobs:
|
||||
- name: Upload results
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: blips-apple-universal.zip
|
||||
name: blips-apple-universal
|
||||
path: |
|
||||
build/tools/blisp/blisp
|
||||
if-no-files-found: error
|
||||
@ -79,7 +79,7 @@ jobs:
|
||||
- name: Upload results
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: blips-linux-x86_64.zip
|
||||
name: blips-linux-x86_64
|
||||
path: |
|
||||
build/tools/blisp/blisp
|
||||
if-no-files-found: error
|
||||
@ -151,7 +151,7 @@ jobs:
|
||||
- name: Upload results
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: blisp-linux-${{ matrix.arch }}.zip
|
||||
name: blisp-linux-${{ matrix.arch }}
|
||||
path: |
|
||||
artifacts/blisp-*
|
||||
if-no-files-found: error
|
||||
|
@ -360,13 +360,13 @@ blisp_return_t blisp_device_flash_erase(struct blisp_device* device,
|
||||
*(uint32_t*)(payload + 4) = end_address;
|
||||
|
||||
blisp_return_t ret = blisp_send_command(device, 0x30, payload, 8, true);
|
||||
if (ret < 0)
|
||||
if (ret != BLISP_OK)
|
||||
return ret;
|
||||
do {
|
||||
ret = blisp_receive_response(device, false);
|
||||
} while (ret == BLISP_ERR_PENDING);
|
||||
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
blisp_return_t blisp_device_flash_write(struct blisp_device* device,
|
||||
@ -414,4 +414,4 @@ blisp_return_t blisp_device_reset(struct blisp_device* device) {
|
||||
void blisp_device_close(struct blisp_device* device) {
|
||||
struct sp_port* serial_port = device->serial_port;
|
||||
sp_close(serial_port);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user