board.h File Reference

Board specific definitions for the Raspberry Pi Pico 2. More...

Detailed Description

Board specific definitions for the Raspberry Pi Pico 2.

Author
Tom Hert git@a.nosp@m.nnsa.nosp@m.nn.eu

Definition in file board.h.

#include "RP2350.h"
#include "cpu.h"
#include "cpu_conf.h"
#include "periph_conf.h"
#include "periph_cpu.h"
+ Include dependency graph for board.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

#define LED0_PIN_ID   25u
 GPIO Pin ID for the onboard LED.
 
#define LED0_ON   gpio_set(LED0_PIN_ID)
 
#define LED0_OFF   gpio_clear(LED0_PIN_ID)
 
#define LED0_TOGGLE   gpio_toggle(LED0_PIN_ID)
 
#define LED0_NAME   "LED(Green)"
 
void board_init (void)
 Initialize the board, called from the cpu startup code.