Welcome to mirror list, hosted at ThFree Co, Russian Federation.

comm.c - github.com/ClusterM/famicom-dumper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/comm.c
blob: 36ca781b2a3f7e205574829a84462bffe7586fd8 (plain)
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
136
137
138
139
140
141
142
#include "defines.h"
#include <inttypes.h>
#include <util/delay.h>
#include "comm.h"
#include "usart.h"

static uint8_t comm_send_crc;
static unsigned int comm_send_length;
static unsigned int comm_send_pos;

static int comm_recv_pos;
static uint8_t comm_recv_crc;
static uint8_t comm_recv_error;

volatile uint8_t comm_recv_command;
volatile unsigned int comm_recv_length;
volatile uint8_t recv_buffer[RECV_BUFFER+8];
volatile uint8_t comm_recv_done;

static void comm_calc_send_crc(uint8_t inbyte)
{
  uint8_t j;
  for (j=0;j<8;j++) 
  {
		uint8_t mix = (comm_send_crc ^ inbyte) & 0x01;
		comm_send_crc >>= 1;
		if (mix) 
			comm_send_crc ^= 0x8C;                  
		inbyte >>= 1;
  }
}

static void comm_calc_recv_crc(uint8_t inbyte)
{
  uint8_t j;
  for (j=0;j<8;j++) 
  {
		uint8_t mix = (comm_recv_crc ^ inbyte) & 0x01;
		comm_recv_crc >>= 1;
		if (mix) 
			comm_recv_crc ^= 0x8C;                  
		inbyte >>= 1;
  }
}

static void comm_send_and_calc(uint8_t data)
{
	comm_calc_send_crc(data);
	USART_TransmitByte(data);
#ifdef SEND_DELAY
	_delay_us(SEND_DELAY);
#endif
}

void comm_start(uint8_t command, unsigned int length)
{
	comm_send_crc = 0;
	comm_send_and_calc('F');
	comm_send_and_calc(command);
	comm_send_and_calc(length & 0xff);
	comm_send_and_calc((length >> 8) & 0xff);
	comm_send_length = length;
	comm_send_pos = 0;

	if (!comm_send_length)
		USART_TransmitByte(comm_send_crc);
}

void comm_send_byte(uint8_t data)
{
	comm_send_and_calc(data);
	comm_send_pos++;
	
	if (comm_send_pos == comm_send_length)
		USART_TransmitByte(comm_send_crc);
}

void comm_proceed(uint8_t data)
{
	if (comm_recv_error && data != 'F') return;
	comm_recv_error = 0;
	if (!comm_recv_pos)
	{
		comm_recv_crc = 0;
		comm_recv_done = 0;
	}
	comm_calc_recv_crc(data);
	unsigned int l = comm_recv_pos-4;
	switch (comm_recv_pos)
	{
		case 0:
			if (data != 'F')
			{
				comm_recv_error = 1;
				comm_start(COMMAND_ERROR_INVALID, 0);
			}
			break;
		case 1:
			comm_recv_command = data;
			break;
		case 2:
			comm_recv_length = data;
			break;
		case 3:
			comm_recv_length |= (uint16_t)data << 8;
			break;
		default:
			if (l >= sizeof(recv_buffer))
			{
				comm_recv_pos = 0;
				comm_recv_error = 1;
				comm_start(COMMAND_ERROR_OVERFLOW, 0);
				return;
			}			
			else if (l < comm_recv_length)
			{
				recv_buffer[l] = data;				
			} else if (l == comm_recv_length)
			{
				if (!comm_recv_crc)
				{
					comm_recv_done = 1;
				} 
				else
				{
					comm_recv_error = 1;
					comm_start(COMMAND_ERROR_CRC, 0);
				}
				comm_recv_pos = 0;
				return;
			}
			break;
	}
	comm_recv_pos++;
}

void comm_init()
{
	comm_recv_pos = 0;
	comm_recv_done = 0;	
	comm_recv_error = 0;
}