Skip to content
Merged
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
2 changes: 1 addition & 1 deletion lib/tinyusb
3 changes: 0 additions & 3 deletions src/rp2_common/hardware_flash/include/hardware/flash.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@
#define FLASH_UNIQUE_ID_SIZE_BYTES 8

// PICO_CONFIG: PICO_FLASH_SIZE_BYTES, size of primary flash in bytes, type=int, group=hardware_flash
#ifndef PICO_FLASH_SIZE_BYTES
#warning PICO_FLASH_SIZE_BYTES is not set
#endif

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion src/rp2_common/pico_double/double_init_rom.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
uint32_t sd_table[SF_TABLE_V2_SIZE / 2];

#if !PICO_DOUBLE_SUPPORT_ROM_V1
static __attribute__((noreturn)) void missing_double_func_shim() {
static __attribute__((noreturn)) void missing_double_func_shim(void) {
panic("missing double function");
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/rp2_common/pico_float/float_init_rom.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ uint32_t sf_table[SF_TABLE_V2_SIZE / 2];
void *sf_clz_func;

#if !PICO_FLOAT_SUPPORT_ROM_V1
static __attribute__((noreturn)) void missing_float_func_shim() {
static __attribute__((noreturn)) void missing_float_func_shim(void) {
panic("");
}
#endif
Expand Down