-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMax3421e.h
39 lines (32 loc) · 867 Bytes
/
Max3421e.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* MAX3421E functions */
#ifndef _MAX3421E_H_
#define _MAX3421E_H_
#include <SPI.h>
//#include <WProgram.h>
//#include "WProgram.h"
#include <Arduino.h>
#include "Max3421e_constants.h"
class MAX3421E : public SPIClass {
// byte vbusState;
public:
MAX3421E( void );
byte getVbusState( void );
void toggle( byte pin );
static void regWr( byte, byte );
char * bytesWr( byte, byte, char * );
static void gpioWr( byte );
byte regRd( byte );
char * bytesRd( byte, byte, char * );
byte gpioRd( void );
boolean reset();
boolean vbusPwr ( boolean );
void busprobe( void );
void powerOn();
byte IntHandler();
byte GpxHandler();
byte Task();
private:
void init();
friend class Max_LCD;
};
#endif //_MAX3421E_H_