forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIArduinoComms.cs
99 lines (84 loc) · 3.52 KB
/
IArduinoComms.cs
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
using System.Collections.Generic;
using System.IO.Ports;
using MissionPlanner.Comms;
namespace MissionPlanner.Arduino
{
public delegate void ProgressEventHandler(int progress, string status);
/// <summary>
/// Arduino STK interface
/// </summary>
public interface IArduinoComms: ICommsSerial
{
// from serialport class
bool connectAP();
bool keepalive();
bool sync();
byte[] download(short length);
byte[] downloadflash(short length);
bool setaddress(int address);
bool upload(byte[] data, short startfrom, short length, short startaddress);
bool uploadflash(byte[] data, int startfrom, int length, int startaddress);
Chip getChipType();
event ProgressEventHandler Progress;
}
public class Chip
{
private static bool creating = true;
public static List<Chip> chips = new List<Chip>();
public string name = "";
public byte sig1;
public byte sig2;
public byte sig3;
public uint size;
public Chip(string nm, byte s1, byte s2, byte s3, uint size)
{
if (chips.Count == 0 && creating)
Populate();
name = nm;
sig1 = s1;
sig2 = s2;
sig3 = s3;
this.size = size;
}
public static void Populate()
{
creating = false;
chips.Clear();
chips.Add(new Chip("ATmega2561", 0x1e, 0x98, 0x02, 0x100U)); //128 words
chips.Add(new Chip("ATmega2560", 0x1e, 0x98, 0x01, 0x100U)); //128 words
chips.Add(new Chip("ATmega1280", 0x1e, 0x97, 0x03, 0x80U)); //128 words
chips.Add(new Chip("ATmega1281", 0x1e, 0x97, 0x04, 0x80U)); //128 words
chips.Add(new Chip("ATmega128", 0x1e, 0x97, 0x02, 0x80U)); //128 words
chips.Add(new Chip("ATmega64", 0x1e, 0x96, 0x02, 0x80U)); //128 words
chips.Add(new Chip("ATmega32", 0x1e, 0x95, 0x02, 0x40U)); //64 words
chips.Add(new Chip("ATmega16", 0x1e, 0x94, 0x03, 0x40U)); //64 words
chips.Add(new Chip("ATmega8", 0x1e, 0x93, 0x07, 0x20U)); //32 words
chips.Add(new Chip("ATmega88", 0x1e, 0x93, 0x0a, 0x20U)); //32 words
chips.Add(new Chip("ATmega168", 0x1e, 0x94, 0x06, 0x40U)); //64 words
chips.Add(new Chip("ATmega328P", 0x1e, 0x95, 0x0F, 0x40U)); //64 words
chips.Add(new Chip("ATmega162", 0x1e, 0x94, 0x04, 0x40U)); //64 words
chips.Add(new Chip("ATmega163", 0x1e, 0x94, 0x02, 0x40U)); //64 words
chips.Add(new Chip("ATmega169", 0x1e, 0x94, 0x05, 0x40U)); //64 words
chips.Add(new Chip("ATmega8515", 0x1e, 0x93, 0x06, 0x20U)); //32 words
chips.Add(new Chip("ATmega8535", 0x1e, 0x93, 0x08, 0x20U)); //32 words
foreach (var item in chips)
{
// Console.WriteLine(item);
}
}
public override string ToString()
{
return "Chip(" + name + ", " + sig1.ToString("X") + ", " + sig2.ToString("X") + ", " + sig3.ToString("X") +
", " + size + ")";
}
public override bool Equals(object obj)
{
var item = obj as Chip;
return item.sig1 == sig1 && item.sig2 == sig2 && item.sig3 == sig3;
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
}