blob: b89c20c18cb8e2f59acf85e8e7ba8157dd445560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef STUMPY_ONBOARD_H
#define STUMPY_ONBOARD_H
/* Recovery: GPIO42 = CHP3_REC_MODE#, active low */
#define GPIO_REC_MODE 42
/* Write Protect: GPIO68 = CHP3_SPI_WP, active high */
#define GPIO_SPI_WP 68
int get_power_switch(void);
#endif
|