forked from raspberry-sharp/raspberry-sharp-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessor.cs
More file actions
33 lines (29 loc) · 803 Bytes
/
Copy pathProcessor.cs
File metadata and controls
33 lines (29 loc) · 803 Bytes
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
namespace Raspberry
{
/// <summary>
/// The Raspberry Pi processor.
/// </summary>
public enum Processor
{
/// <summary>
/// Processor is unknown.
/// </summary>
Unknown,
/// <summary>
/// Processor is a BCM2708.
/// </summary>
Bcm2708,
/// <summary>
/// Processor is a BCM2709.
/// </summary>
Bcm2709,
/// <summary>
/// Processor is BCM2711
/// </summary>
Bcm2711,
/// <summary>
/// Processor is BCM2835
/// </summary>
Bcm2835
}
}