Made corrections.

This commit is contained in:
2026-06-17 09:45:23 -07:00
parent ca78f1df0a
commit cb8a634b42
6 changed files with 45 additions and 86 deletions

View File

@@ -115,7 +115,7 @@ of the component, for example 01_classes, 02_management, 03_chain_Home, and so o
TEMPORARY TESTING FILES
As each component if built, I may ask for temporary files to be created
for testing of the component. For example, I may ask for targets on a radar
for construction component. For example, I may ask for targets on a radar
before any target handling code is made.
I will indicated what is needed to be built. And when I am done testing, I will
@@ -279,7 +279,6 @@ ssbo_target_information { // This is what is sent to the shaders as SSBO
float beam; // Vessel beam bounds (meters)
float course; // Course over ground vector (radians relative to True North)
float altitude; // Target altitude profile (meters = 0 for boats)
time_t timestamp; // Data aging tracking identifier
float current_reflectivity; // derivied from vessel_type (see table below)
float height_estimate; // derived from vessel_type (see table below)
float noiseglint; // derived from vessel_type (see table below)
@@ -456,18 +455,9 @@ struct radar_management_structure {
int operatable; // 1 is yes, 0 is no
int available; // 1 is yes, 0 is no - this is the one controled by the exhibit owner
int selected; // 1 is currently operating, 0 is not operating
int testing; // What is being developed and tested; 1 = overall management
including startup and radar selectionr,
2 = chain_home, 3 = marine_ascope, 4 = marine_traffic, 5 = police_boat, 6 = traffic_cop,
7 = simulator, and 8 = raspberry pi receiver
};
Note that if a radar is in testing, no other radars can be available. Also testing code can be used
to work on the radar being tested and developed
In the global data, we need these items:
struct radar_management_structure radar_management;
int current_radar; // 0 is none; 1 is chain_home; 2 is marine_ascope; 3 is marine_traffic; 4 is police_boat
===========================================================================