]>
Commit | Line | Data |
---|---|---|
1 | // SPDX-License-Identifier: (GPL-2.0 or MIT) | |
2 | /* | |
3 | * Copyright (C) 2020 Jesse Taube <[email protected]> | |
4 | */ | |
5 | ||
6 | #ifndef __FLASH_CONFIGS__ | |
7 | #define __FLASH_CONFIGS__ | |
8 | typedef struct _flash_configs { | |
9 | flexspi_nor_config_t config; | |
10 | char name[32]; | |
11 | } flash_configs; | |
12 | const flash_configs * get_flash_confs(); | |
13 | #endif /* __FLASH_CONFIGS__ */ |