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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ INSTALLDIR=install
# Determine OS
#
OS:=$(shell uname -s | cut -c -7)
OS_SHORT:=$(shell uname -s | cut -c -5)

#
# Windows rules
#
ifeq ($(OS),MINGW32)
ifeq ($(OS_SHORT),MINGW)
# Use wxWindows development branch to work around font scaling issues on Windows
WXVERSION=3.1
EXE=.exe
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Supported Device Families
* SAMS70\*
* SAMV70\*
* SAMV71\*
* qNimble Quarto\*

\* Device families which are not tested for each release and could stop working.

Expand Down
8 changes: 8 additions & 0 deletions src/Device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,14 @@ Device::create()
_family = FAMILY_SAMV71;
flashPtr = new EefcFlash(_samba, "ATSAMV71x21", 0x400000, 4096, 512, 1, 128, 0x20401000, 0x20404000, 0x400e0c00, false);
break;
//
// qNimble BOSSA-compatible bootloader
//
case 0x714e3000:
_family = FAMILY_SAM7X;
flashPtr = new EfcFlash(_samba, "qNimble BOSSAv1", 0x300000, 32768, 256, 1, 32, 0x202000, 0x220000, true);

break;
//
// No CHIPID devices
//
Expand Down
2 changes: 1 addition & 1 deletion src/EfcFlash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ EfcFlash::EfcFlash(Samba& samba,
_canBootFlash(canBootFlash)
{
assert(planes == 1 || planes == 2);
assert(pages <= planes * 1024);
assert(pages <= planes * 65536);
assert(lockRegions <= 32);

eraseAuto(true);
Expand Down