Add support for the Aeris Manta.
The last memory page is marked as unreadable, and the profile ringbuffer end is set to 0xFE00.
This commit is contained in:
parent
58d0e0a62a
commit
6242978fc0
@ -63,6 +63,7 @@ static const device_backend_t oceanic_atom2_device_backend = {
|
||||
oceanic_atom2_device_close /* close */
|
||||
};
|
||||
|
||||
static const unsigned char aeris_manta_version[] = "MANTA R\0\0 512K";
|
||||
static const unsigned char aeris_atmosai_version[] = "ATMOSAI R\0\0 512K";
|
||||
static const unsigned char aeris_epic_version[] = "2M EPIC r\0\0 512K";
|
||||
static const unsigned char aeris_f10_version[] = "FREEWAER \0\0 512K";
|
||||
@ -85,7 +86,6 @@ static const unsigned char tusa_element2_version[] = "ELEMENT2 \0\0 512K";
|
||||
static const unsigned char tusa_zen_version[] = "TUSAZEN \0\0 512K";
|
||||
static const unsigned char tusa_zenair_version[] = "TUZENAIR \0\0 512K";
|
||||
|
||||
|
||||
static const oceanic_common_layout_t aeris_f10_layout = {
|
||||
0x10000, /* memsize */
|
||||
0x0000, /* cf_devinfo */
|
||||
@ -382,6 +382,7 @@ oceanic_atom2_device_open (device_t **out, const char* name)
|
||||
device->base.layout = &oceanic_atom1_layout;
|
||||
else if (oceanic_common_match (sherwood_insight_version, device->version, sizeof (device->version)) ||
|
||||
oceanic_common_match (sherwood_wisdom2_version, device->version, sizeof (device->version)) ||
|
||||
oceanic_common_match (aeris_manta_version, device->version, sizeof (device->version)) ||
|
||||
oceanic_common_match (aeris_atmosai_version, device->version, sizeof (device->version)) ||
|
||||
oceanic_common_match (oceanic_geo2_version, device->version, sizeof (device->version)) ||
|
||||
oceanic_common_match (oceanic_veo3_version, device->version, sizeof (device->version)) ||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user