mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2015
 | |
|  * Kamil Lulko, <rev13@wp.pl>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <asm-generic/gpio.h>
 | |
| 
 | |
| void coloured_LED_init(void)
 | |
| {
 | |
| 	gpio_direction_output(CONFIG_RED_LED, 0);
 | |
| 	gpio_direction_output(CONFIG_GREEN_LED, 0);
 | |
| }
 | |
| 
 | |
| void red_led_off(void)
 | |
| {
 | |
| 	gpio_set_value(CONFIG_RED_LED, 0);
 | |
| }
 | |
| 
 | |
| void green_led_off(void)
 | |
| {
 | |
| 	gpio_set_value(CONFIG_GREEN_LED, 0);
 | |
| }
 | |
| 
 | |
| void red_led_on(void)
 | |
| {
 | |
| 	gpio_set_value(CONFIG_RED_LED, 1);
 | |
| }
 | |
| 
 | |
| void green_led_on(void)
 | |
| {
 | |
| 	gpio_set_value(CONFIG_GREEN_LED, 1);
 | |
| }
 |