mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-17 03:07:35 +08:00
[BACKPORT] px4 mtd:Support FlexSPI attached Devices
This commit is contained in:
@@ -49,6 +49,7 @@ typedef struct {
|
||||
I2C = 0,
|
||||
SPI = 1,
|
||||
ONCHIP = 2,
|
||||
FLEXSPI = 3
|
||||
} bus_type;
|
||||
|
||||
uint32_t devid;
|
||||
|
||||
@@ -82,4 +82,6 @@ int px4_at24c_initialize(FAR struct i2c_master_s *dev,
|
||||
|
||||
void px4_at24c_deinitialize(void);
|
||||
|
||||
int flexspi_attach(mtd_instance_s *instance);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
@@ -357,6 +357,11 @@ memoryout:
|
||||
|
||||
} else if (mtd_list->entries[num_entry]->device->bus_type == px4_mft_device_t::SPI) {
|
||||
rv = ramtron_attach(*instances[i]);
|
||||
#if defined(HAS_FLEXSPI)
|
||||
|
||||
} else if (mtd_list->entries[num_entry]->device->bus_type == px4_mft_device_t::FLEXSPI) {
|
||||
rv = flexspi_attach(instances[i]);
|
||||
#endif
|
||||
|
||||
} else if (mtd_list->entries[num_entry]->device->bus_type == px4_mft_device_t::ONCHIP) {
|
||||
instances[i]->n_partitions_current++;
|
||||
|
||||
Reference in New Issue
Block a user