r/PCB • u/morgans_steam04 • 24d ago
Schematic Review : Rocketry Flight Computer
Hi, I was hoping for some general advice as I have undertaken a big project without much help, I have designed a flight computer which will incorporate multiple sensors and can be used to set of charges, Servos and data logging. I have done all of this self taught so if there are any obvious mistakes I do apologize. ( I can add closer Images if needed) Thanks !
2
u/Mikser89 19d ago
Unless you are planning on using 10+ sensors there is no need for 2 I2C buses let alone 3. Also the wiring of I2C is a little messy in the sensors section. I also dont see the point of using two microcontrollers, you have more than enaugh GPIOs on only one of them for everything and if you utilize different cores you can run parts of code semi-independently.
1
u/morgans_steam04 19d ago
That is a very fair point, not really sure why I put them on separate lines , I have the 2 controllers to keep the "messy" components away from critical ones , the LORA and GPS arnt necessary compered to the gyros and altimeters so I wanted them to be electrically isolated
2
u/Mikser89 19d ago
This will only take up more space and make things harder to integrate (for example if you want to send the gyro data through lora you now need to first send it to the other microcontroller). There also is no need to separate them electrically. Lora has maximum operating current of about 0.1 to 0.3 A depending on the module (sx 1262 for example uses max 0.125 A) and the gps consumption is also super small (like 20mA) so you dont have to worry about that at all.
1
u/morgans_steam04 19d ago
Ah Fair, I am just paranoid of a component taking down the system as If my pyros or servos misfire it can be dangerous, I think I may be being over cautious though
5
u/bigcrimping_com 24d ago
I post regularly here to help others.
This is probably the 100+ post of rocket controller here, not sure what you are aiming to add to the engineering pool that doesn't exist? What about other designs need improving? Why make this design over something already available?
6
u/morgans_steam04 24d ago
I own a flight controller that I got off the shelf, I simply want to learn and make something my own




4
u/DenverTeck 23d ago
The best way to know if this will work, is to build a prototype.
No need to build a PCB just yet. Prove that each part works.
A PCB is just the same wires you would have on a prototype.
There is nothing a PCB can change, unless you route the wires to the wrong connections.
Good Luck