blob: 05e4732d57509c8427fa3ab3e2c52e2b2ed91d15 (
plain) (
blame)
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
|
/*
* Copyright (C) 2017 hatkirby
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#include "link.h"
#define JOY_WRITE 2
#define JOY_READ 4
#define JOY_RW 6
void initializeLink()
{
REG_JOYTR = 0;
REG_HS_CTRL |= JOY_RW;
while ((REG_HS_CTRL & JOY_READ) == 0);
REG_HS_CTRL |= JOY_RW;
}
void waitForAck()
{
while ((REG_HS_CTRL & JOY_WRITE) == 0);
REG_HS_CTRL |= JOY_RW;
}
u32 waitForResponse()
{
u32 val;
while ((REG_HS_CTRL & JOY_WRITE) == 0);
REG_HS_CTRL |= JOY_RW;
val = REG_JOYRE;
return val;
}
void sendS32(s32 val)
{
sendU32(val);
}
void sendU32(u32 val)
{
REG_JOYTR = val;
}
void directSendU32(u32 val)
{
REG_JOYTR = val;
while ((REG_HS_CTRL & JOY_READ) == 0);
REG_HS_CTRL |= JOY_RW;
}
|