26 lines
		
	
	
		
			432 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			432 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* metadata:
 | 
						|
   name: CH32V103R-R1-1v1
 | 
						|
   url: https://github.com/openwch/ch32v103/tree/main/SCHPCB/CH32V103R-R1-1v1
 | 
						|
*/
 | 
						|
 | 
						|
#ifndef BOARD_H_
 | 
						|
#define BOARD_H_
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#define LED_PORT       GPIOA
 | 
						|
#define LED_PIN        GPIO_Pin_10
 | 
						|
#define LED_STATE_ON   0
 | 
						|
 | 
						|
#define BUTTON_PORT           GPIOA
 | 
						|
#define BUTTON_PIN            GPIO_Pin_1
 | 
						|
#define BUTTON_STATE_ACTIVE   0
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |