You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
377 B
25 lines
377 B
7 years ago
|
//
|
||
|
// Created by MightyPork on 2018/02/03.
|
||
|
//
|
||
|
|
||
|
#ifndef GEX_F072_NPX_INTERNAL_H
|
||
|
#define GEX_F072_NPX_INTERNAL_H
|
||
|
|
||
|
#ifndef NPX_INTERNAL
|
||
|
#error bad include!
|
||
|
#endif
|
||
|
|
||
|
#include "unit_base.h"
|
||
|
|
||
|
/** Private data structure */
|
||
|
struct priv {
|
||
|
char port_name;
|
||
|
uint8_t pin_number;
|
||
|
uint16_t pixels;
|
||
|
|
||
|
uint32_t ll_pin;
|
||
|
GPIO_TypeDef *port;
|
||
|
};
|
||
|
|
||
|
#endif //GEX_F072_NPX_INTERNAL_H
|