15 lines
220 B
C
Executable File
15 lines
220 B
C
Executable File
/*
|
|
* Copyright (c) 2022 rockchip
|
|
*
|
|
*/
|
|
|
|
#ifndef __RK_LED_H__
|
|
#define __RK_LED_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
int rk_led_set_mode(char *dev_path, bool blink, uint32_t brightness);
|
|
|
|
#endif //__RK_LED_H__
|