18 lines
291 B
C
18 lines
291 B
C
/*
|
|
* (C) Copyright 2005
|
|
*
|
|
* Roel Loeffen, (C) Copyright 2006 Prodrive B.V. roel.loeffen@prodrive.nl
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __P3MX_H__
|
|
#define __P3MX_H__
|
|
|
|
#define LED_OFF 1
|
|
#define LED_GREEN 2
|
|
#define LED_RED 3
|
|
#define LED_ORANGE 4
|
|
|
|
#endif /* __P3MX_H__ */
|