Skip to content

Commit

Permalink
Merge pull request #1 from arduino/fix_for_erratic_bootloader_behaviour
Browse files Browse the repository at this point in the history
fix for erratic bootloader behaviour on RA2A1
  • Loading branch information
facchinm authored Sep 29, 2023
2 parents 5c5873e + 0c62d4a commit 796f4b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions hw/bsp/ra/boards/capri/fsp_cfg/bsp/bsp_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#define BSP_CFG_STARTUP_CLOCK_REG_NOT_RESET ((0))

#ifndef BSP_CLOCK_CFG_MAIN_OSC_POPULATED
#define BSP_CLOCK_CFG_MAIN_OSC_POPULATED (1)
#define BSP_CLOCK_CFG_MAIN_OSC_POPULATED (0)
#endif

#ifndef BSP_CLOCK_CFG_MAIN_OSC_CLOCK_SOURCE
Expand All @@ -49,7 +49,7 @@
#define BSP_CLOCK_CFG_SUBCLOCK_DRIVE (0)
#endif
#ifndef BSP_CLOCK_CFG_SUBCLOCK_POPULATED
#define BSP_CLOCK_CFG_SUBCLOCK_POPULATED (1)
#define BSP_CLOCK_CFG_SUBCLOCK_POPULATED (0)
#endif
#ifndef BSP_CLOCK_CFG_SUBCLOCK_STABILIZATION_MS
#define BSP_CLOCK_CFG_SUBCLOCK_STABILIZATION_MS 1000
Expand Down
4 changes: 2 additions & 2 deletions hw/bsp/ra/boards/science_kit/fsp_cfg/bsp/bsp_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#define BSP_CFG_STARTUP_CLOCK_REG_NOT_RESET ((0))

#ifndef BSP_CLOCK_CFG_MAIN_OSC_POPULATED
#define BSP_CLOCK_CFG_MAIN_OSC_POPULATED (1)
#define BSP_CLOCK_CFG_MAIN_OSC_POPULATED (0)
#endif

#ifndef BSP_CLOCK_CFG_MAIN_OSC_CLOCK_SOURCE
Expand All @@ -48,7 +48,7 @@
#define BSP_CLOCK_CFG_SUBCLOCK_DRIVE (0)
#endif
#ifndef BSP_CLOCK_CFG_SUBCLOCK_POPULATED
#define BSP_CLOCK_CFG_SUBCLOCK_POPULATED (1)
#define BSP_CLOCK_CFG_SUBCLOCK_POPULATED (0)
#endif
#ifndef BSP_CLOCK_CFG_SUBCLOCK_STABILIZATION_MS
#define BSP_CLOCK_CFG_SUBCLOCK_STABILIZATION_MS 1000
Expand Down

0 comments on commit 796f4b6

Please sign in to comment.