Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ground systems #95

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
4d28988
moved port 3 to pb8
neelayjunnarkar Jan 16, 2019
832514f
temp
neelayjunnarkar Jan 17, 2019
ed0fe58
weird trace fixed
Jan 24, 2019
78a62dc
adding tests
neelayjunnarkar Jan 24, 2019
98f95bc
adding everything in ground sys
neelayjunnarkar Jan 24, 2019
188481c
test. failed
neelayjunnarkar Jan 26, 2019
1a5398c
better rfm lib?
neelayjunnarkar Jan 30, 2019
08820cc
grounded boot0 and boot1 through 10k resistors. removed many decoupli…
neelayjunnarkar Feb 10, 2019
e62c681
added testpoints
neelayjunnarkar Feb 10, 2019
40f7ecc
increased version number to v3.2
neelayjunnarkar Feb 10, 2019
c156ed1
re-org'd github now that hardware is on grabcad
neelayjunnarkar Feb 24, 2019
7e45fed
removed ground prop and telemetry server from ground stations branch
neelayjunnarkar Feb 24, 2019
c1a9c8f
adding test projects
neelayjunnarkar Feb 24, 2019
3a5a338
now includes io3 (previously on boot0), fixed LOG to printf
neelayjunnarkar Feb 24, 2019
0444660
code for most tests except reciever
neelayjunnarkar Feb 24, 2019
ad065ed
updated pinger and receiver libs and mains
neelayjunnarkar Mar 5, 2019
4998946
Added flatbuffers
Jashaszun Mar 5, 2019
95ca869
flatbuf
neelayjunnarkar Mar 5, 2019
7d236b5
updated groundstation code to new rfm lib
neelayjunnarkar Mar 6, 2019
3bf2b74
removed mbed_settings.pyc from tracking
neelayjunnarkar Mar 6, 2019
ee61f71
added openmct stuff
neelayjunnarkar Mar 6, 2019
9d04f7b
removed sleep after send
neelayjunnarkar Mar 8, 2019
ab80240
added tx and rx led code
neelayjunnarkar Mar 10, 2019
98b063f
usb test
neelayjunnarkar Mar 16, 2019
9c8c01b
Added initial live text updates to console
Jashaszun Apr 12, 2019
bf5f86f
merge resolve
neelayjunnarkar Apr 12, 2019
4a0bfe1
merged changes better
neelayjunnarkar Apr 12, 2019
181ec2e
sync time based on first received timestamp from gs
neelayjunnarkar Apr 12, 2019
a13d1bf
Added live text updates
Jashaszun Apr 12, 2019
0b4b62e
updates to openmct
neelayjunnarkar Apr 13, 2019
4483144
package updates
neelayjunnarkar Apr 13, 2019
c67aae2
merged
neelayjunnarkar Apr 13, 2019
b8468a0
Added flight computer state diagram
Jashaszun Apr 15, 2019
bb3d6ab
Added automatic port finding
Jashaszun Apr 15, 2019
cc0069c
Changed automatic COM port check
Jashaszun Apr 15, 2019
13f8ac8
Added important comment
Jashaszun Apr 15, 2019
f08a224
Added logging to CSV, fixed timestamps, and finished FC state diagram…
Jashaszun Apr 15, 2019
99cc176
gs openmct
neelayjunnarkar Apr 15, 2019
1af0a92
moving average battery and openmct
neelayjunnarkar Apr 15, 2019
c6452a5
Finished logging and added log consolidate utility
Jashaszun Apr 15, 2019
386b92d
Added transmit lockout message.
Jashaszun Apr 17, 2019
ed5a66d
Changed FC state flow data to match FC state machine
Jashaszun Apr 17, 2019
9683b09
added make layouts
neelayjunnarkar Apr 17, 2019
eb728b7
added number of bytes sent, display gs log
neelayjunnarkar Apr 19, 2019
acb4b63
added command for turning off black powder
bobotran Apr 19, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 27 additions & 0 deletions general/common.fbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
namespace Calstar;

enum MessageType : byte { FCData = 0, TPCData = 1 }

enum FCState : byte { Pad = 0, Flight = 1 }
struct FCData {
State : FCState;
AccelX : float;
AccelY : float;
AccelZ : float;
MagX : float;
MagY : float;
MagZ : float;
GyroX : float;
GyroY : float;
GyroZ : float;
Altitude : float;
}

enum TPCState : byte { Pad = 0, Flight = 1 }
table TPCData {
State : TPCState;
GPSString : string;
BatteryVoltage : float;
}

root_type TPCData;
1 change: 1 addition & 0 deletions general/flatbuffers
Submodule flatbuffers added at 1c7d91
Binary file not shown.
Binary file removed ground_propulsion/hardware/shield.bch
Binary file not shown.
1 change: 0 additions & 1 deletion ground_systems/firmware/ground_station/RFM69.lib

This file was deleted.

530 changes: 0 additions & 530 deletions ground_systems/firmware/ground_station/RFM69/RFM69.cpp

This file was deleted.

120 changes: 0 additions & 120 deletions ground_systems/firmware/ground_station/RFM69/RFM69.h

This file was deleted.

Loading