-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUtils.h
135 lines (115 loc) · 3.12 KB
/
Utils.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* Copyright (c) 2009, Peter Barrett
**
** Permission to use, copy, modify, and/or distribute this software for
** any purpose with or without fee is hereby granted, provided that the
** above copyright notice and this permission notice appear in all copies.
**
** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
** BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
** OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
** WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
** ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
** SOFTWARE.
*/
#include <stdio.h>
#include <string.h>
#ifndef byte
typedef unsigned char byte;
typedef unsigned short ushort;
typedef unsigned long ulong;
#endif
#ifndef uchar
typedef unsigned char uchar;
#endif
#ifndef _WIN32
#include <inttypes.h>
#include <avr/pgmspace.h>
#include "mmc.h"
#include "microfat2.h"
#ifndef abs
#define abs(_x) ((_x) < 0 ? -(_x) : (_x))
#endif
#else
#include "stdafx.h"
#define PROGMEM
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
#define pgm_read_byte(_x) (*(_x))
#define pgm_read_word(_x) (*(_x))
#endif
#ifndef max
#define max(_a,_b) (((_a) > (_b)) ? (_a) : (_b))
#define min(_a,_b) (((_a) < (_b)) ? (_a) : (_b))
#endif
void delay(ushort ms);
void print(const char* s);
void printhex(int d);
void printdec(int d);
void assertFailed(const char* str, int len);
//#define ASSERT(_x) if (!(_x)) assertFailed(__FILE__,__LINE__);
#define ASSERT(_x) if (!(_x)) assertFailed(NULL,__LINE__);
ulong ReadPerfCounter(); // 1.5 mhz counter
void Console(const char* s);
void Console(const char* s, long n);
void ConsoleReset();
class Perf
{
ulong _t;
public:
Perf();
ulong Elapsed();
ulong ElapsedMS();
};
typedef struct
{
ushort x;
ushort y;
} TouchEvent;
byte TouchRead(TouchEvent& e);
class Application
{
public:
static void Init();
static void Loop(byte phase);
static byte Command(byte len, const byte* cmd);
static void TouchDown(TouchEvent& e);
static void TouchUp(TouchEvent& e);
static void TouchMove(TouchEvent& e);
};
void printHex4(uchar h);
void printHex8(uchar h);
void printHex(int h);
void printChar(char c);
void print(long d);
void print(const char* str);
void sendFlush(); // Wait until send buffer is empty
class RingBuffer
{
byte* _buffer;
byte _len;
volatile byte _head;
volatile byte _tail;
public:
RingBuffer(byte* buffer, byte len) : _buffer(buffer),_len(len),_head(0),_tail(0){};
byte Count()
{
return _head - _tail;
}
byte Read()
{
//while (_head == _tail); // don't read empty buffers please
byte c = _buffer[_tail & (_len-1)];
_tail++;
return c;
}
void Write(byte c)
{
if ((_head - _tail) == _len)
return; // overrun
_buffer[_head & (_len-1)] = c;
_head++;
}
};