Skip to content

Commit

Permalink
fix(components): Compiler reports some warnings
Browse files Browse the repository at this point in the history
esp-idf/components/driver/twai/twai.c warning: unused variable 'res' [-Wunused-variable]
  XXX |     bool res = twai_hal_init(&p_twai_obj->hal, &hal_config);
      |          ^~~
esp-idf/components/fatfs/diskio/diskio_rawflash.c warning: unused variable 'part' [-Wunused-variable]
   XX |     const esp_partition_t* part = s_ff_raw_handles[pdrv];
      |                            ^~~~
esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c warning: unused variable 'found' [-Wunused-variable]
  XXX |     bool found = s_get_context_id_by_card(card, &id);
      |          ^~~~~
  • Loading branch information
safocl committed Dec 20, 2024
1 parent b5ac4fb commit c56e667
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions components/driver/twai/twai.c
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,7 @@ esp_err_t twai_driver_install_v2(const twai_general_config_t *g_config, const tw
.clock_source_hz = clock_source_hz,
.controller_id = controller_id,
};
bool res = twai_hal_init(&p_twai_obj->hal, &hal_config);
assert(res);
assert(twai_hal_init(&p_twai_obj->hal, &hal_config));
twai_hal_configure(&p_twai_obj->hal, t_config, f_config, DRIVER_DEFAULT_INTERRUPTS, g_config->clkout_divider);

//Assign GPIO and Interrupts
Expand Down
3 changes: 1 addition & 2 deletions components/fatfs/diskio/diskio_rawflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@ DRESULT ff_raw_write (BYTE pdrv, const BYTE *buff, DWORD sector, UINT count)

DRESULT ff_raw_ioctl (BYTE pdrv, BYTE cmd, void *buff)
{
const esp_partition_t* part = s_ff_raw_handles[pdrv];
ESP_LOGV(TAG, "ff_raw_ioctl: cmd=%in", cmd);
assert(part);
assert(s_ff_raw_handles[pdrv]);
switch (cmd) {
case CTRL_SYNC:
return RES_OK;
Expand Down
3 changes: 1 addition & 2 deletions components/fatfs/vfs/vfs_fat_sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,7 @@ esp_err_t esp_vfs_fat_sdcard_format_cfg(const char *base_path, sdmmc_card_t *car

//format
uint32_t id = FF_VOLUMES;
bool found = s_get_context_id_by_card(card, &id);
assert(found);
assert(s_get_context_id_by_card(card, &id));

if (cfg) {
s_ctx[id]->mount_config = *cfg;
Expand Down

0 comments on commit c56e667

Please sign in to comment.