Difference between revisions of "ProcessorGeneral"

From Elcano Project Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
= General Processor Information =
 
= General Processor Information =
  
This is the landing page for the different modules of the Elcano system, combined with an overview about how the system functions together. The modules make usage of the ElcanoSerial library for async communication, and are arranged in a loop, so that any module can communicate with each other. As discussed in the ElcanoIntro these modules work together in a way that, if they receive a message they cannot interpret, they will send it to the next module without modifying it in any way. This allows us to send a signal, for example, from a device at the beginning of the loop to a device at the end of the loop without needing a direct connection between the two.
+
This is the landing page for the different modules of the Elcano system, combined with an overview about how the system functions together.  
 +
 
 +
The version 2 system depended on the ElcanoSerial library for async UART communication between the modules.  The modules were arranged in a loop, so that any module can communicate with each other. As discussed in the ElcanoIntro these modules work together in a way that, if they receive a message they cannot interpret, they will send it to the next module without modifying it in any way. This allows us to send a signal, for example, from a device at the beginning of the loop to a device at the end of the loop without needing a direct connection between the two.
 +
 
 +
The version 3 system replaces the serial loop with CAN bus, an automotive standard introduced by Bosch in the 1990s. CAN is a no-host network, with arbitration performed in hardware to favor messages with higher priority IDs. In version 2, there were separate processors for C3 (Pilot), C4 (Planner) and C6 (Navigator). In version 3, these tasks are handled by a single Arduino Due on the High-Level Board.
 +
 
 
-------
 
-------
 
=Overview =
 
=Overview =
 
Below is the link to the Master Schematic file that allows anyone to easily locate all components and their intended connections. Please note that this schematic is not to scale, but all components are textually marked with the terminology commonly used throughout the Wiki.
 
Below is the link to the Master Schematic file that allows anyone to easily locate all components and their intended connections. Please note that this schematic is not to scale, but all components are textually marked with the terminology commonly used throughout the Wiki.
[[%PUBURLPATH%/%WEB%/%TOPIC%/Master_Schematic.sch | Master_Schematic.sch]]: Master_Schematic.sch
+
[[%PUBURLPATH%/%WEB%/%TOPIC%/Master_Schematic.sch | Master_Schematic.sch]]: Master_Schematic.sch (version 2)
 +
 
 +
[[System Architecture]] (version 3)
  
  
 
=Modules =
 
=Modules =
  
* [[PowerOn | C1]] Not yet in use, awaiting final revisions
+
* [[Power System]] Includes a PowerOn circuit board, sometimes called C1
  
 
==Low-level ==
 
==Low-level ==
  
* [[LowLevelBoard | Low Level Board]]
+
Drive-by-wire actuator controller software
* [[LowLevel | C2]] Low Level actuator controller software
+
 
 +
* [[LowLevelBoard | Low Level Board v3 and v2]]
 +
* [[LowLevel | C2 Low Level v2 ]]  
  
 
== High-Level ==
 
== High-Level ==
  
* [[HighLevel | High-Level Board]]  
+
* [[HighLevel | High-Level Board v3]]  
 +
 
 +
Information for v2:
 +
* [[PilotPage | C3 Pilot]]  task on HighLevel board
 +
* [[PlannerPage | C4 Planner]] task on HighLevel Board
 +
* [[NavigatorPage | C6] Navigator]]  task on HighLevel board
  
* [[PilotPage | C3]] Pilot -mounted on HighLevel board
 
* [[PlannerPage | C4]] Planner -mounted with HighLevel Board
 
* [[SonarPage | C5]] Sonar
 
* [[NavigatorPage | C6]]  navigator -mounted on HighLevel board
 
* [[VisionPage | C7]] Vision
 
  
 
== Other ==
 
== Other ==
  
 +
* [[Sonar]]  C5
 
* [[SweepObstacleDetector | Sweep Obstacle Detector]]
 
* [[SweepObstacleDetector | Sweep Obstacle Detector]]
 +
* [[VisionPage | Vision]] C7
  
the order of communication connections is specified in ElcanoIntro
+
The version 2 order of communication connections is specified in ElcanoIntro. Version 3 is asynchronous, with priorities determined by CAN message ID.
  
IMPORTANT NOTE: Throughout all articles and descriptions processors will be referred to as C1-C7 while printed circuit boards will be described using their own names such as "HighLevel" and "LowLevel".
+
IMPORTANT NOTE: Throughout older articles and descriptions processors are referred to as C1-C7 while printed circuit boards are described using their own names such as "HighLevel" and "LowLevel".
 
-----   
 
-----   
  

Revision as of 18:03, 28 June 2019


General Processor Information

This is the landing page for the different modules of the Elcano system, combined with an overview about how the system functions together.

The version 2 system depended on the ElcanoSerial library for async UART communication between the modules. The modules were arranged in a loop, so that any module can communicate with each other. As discussed in the ElcanoIntro these modules work together in a way that, if they receive a message they cannot interpret, they will send it to the next module without modifying it in any way. This allows us to send a signal, for example, from a device at the beginning of the loop to a device at the end of the loop without needing a direct connection between the two.

The version 3 system replaces the serial loop with CAN bus, an automotive standard introduced by Bosch in the 1990s. CAN is a no-host network, with arbitration performed in hardware to favor messages with higher priority IDs. In version 2, there were separate processors for C3 (Pilot), C4 (Planner) and C6 (Navigator). In version 3, these tasks are handled by a single Arduino Due on the High-Level Board.


Overview

Below is the link to the Master Schematic file that allows anyone to easily locate all components and their intended connections. Please note that this schematic is not to scale, but all components are textually marked with the terminology commonly used throughout the Wiki. Master_Schematic.sch: Master_Schematic.sch (version 2)

System Architecture (version 3)


Modules

  • Power System Includes a PowerOn circuit board, sometimes called C1

Low-level

Drive-by-wire actuator controller software

High-Level

Information for v2:


Other

The version 2 order of communication connections is specified in ElcanoIntro. Version 3 is asynchronous, with priorities determined by CAN message ID.

IMPORTANT NOTE: Throughout older articles and descriptions processors are referred to as C1-C7 while printed circuit boards are described using their own names such as "HighLevel" and "LowLevel".