hosted: type naming consistency
This commit is contained in:
parent
baf84c9eb4
commit
66b2d0659a
|
@ -31,7 +31,7 @@ void platform_buffer_flush(void);
|
|||
|
||||
#define VENDOR_ID_SEGGER 0x1366
|
||||
|
||||
typedef enum bmp_type_s {
|
||||
typedef enum bmp_type_e {
|
||||
BMP_TYPE_NONE = 0,
|
||||
BMP_TYPE_BMP,
|
||||
BMP_TYPE_STLINKV2,
|
||||
|
|
|
@ -202,9 +202,9 @@ typedef struct {
|
|||
uint8_t ver_bridge;
|
||||
uint16_t block_size;
|
||||
bool ap_error;
|
||||
} stlink;
|
||||
} stlink_t;
|
||||
|
||||
stlink Stlink;
|
||||
stlink_t Stlink;
|
||||
|
||||
static int stlink_usb_get_rw_status(bool verbose);
|
||||
|
||||
|
|
Loading…
Reference in New Issue