Skip to content

Commit

Permalink
Forgot to update the firmware version to 4! fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
VanceVagell committed Dec 25, 2024
1 parent 06b26bc commit bf68e53
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ public void flashData(byte binaryData[], int offset, int part) {
}

private int flash_defl_begin(int size, int compsize, int offset) {

rd
int num_blocks = (int) Math.floor((double) (compsize + (IS_STUB ? STUBLOADER_FLASH_WRITE_SIZE : FLASH_WRITE_SIZE) - 1) / (double) (IS_STUB ? STUBLOADER_FLASH_WRITE_SIZE : FLASH_WRITE_SIZE));
int erase_blocks = (int) Math.floor((double) (size + (IS_STUB ? STUBLOADER_FLASH_WRITE_SIZE : FLASH_WRITE_SIZE) - 1) / (double) (IS_STUB ? STUBLOADER_FLASH_WRITE_SIZE : FLASH_WRITE_SIZE));
// Start time
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <driver/i2s.h>
#include <esp_task_wdt.h>

const byte FIRMWARE_VER[8] = {'0', '0', '0', '0', '0', '0', '0', '3'}; // Should be 8 characters representing a zero-padded version, like 00000001.
const byte FIRMWARE_VER[8] = {'0', '0', '0', '0', '0', '0', '0', '4'}; // Should be 8 characters representing a zero-padded version, like 00000001.
const byte VERSION_PREFIX[7] = {'V', 'E', 'R', 'S', 'I', 'O', 'N'}; // Must match RadioAudioService.VERSION_PREFIX in Android app.

// Commands defined here must match the Android app
Expand Down

0 comments on commit bf68e53

Please sign in to comment.