Nice Work, enjoy your channel. The PTAHADC could be calibration values of Pressure sensors based on Temperature. You have shown PTAHADA, A is for Altitude and PTAHADV, V for Velocity.
@knietiefimdispo24586 ай бұрын
The two different Air Speeds seem to be IAS (Indicated Air Speed) and TAS (True Air Speed). TAS is IAS corrected by temperature and altitude.
@JustLennyBenny6 ай бұрын
Nice work Mr. Michel, interesting to see their design is not extreme, rather robust.
@lubumbashi66666 ай бұрын
I think the word you are looking for is "crude". I wouldn't be surprised if the STM32 code is not locked down. It is probably just running Betaflight. If I were designing that I would have included anti-tamper tech to make RE much harder. E.g. it would be simple matter to erase everything after launch, run from RAM. Hopefully the Ukrainians can download the code.
@JustLennyBenny6 ай бұрын
@@lubumbashi6666 Im sure you prob know more then me, but factor in also the production cost on a large scale, might influence such decision making. I can be wrong ofc.
@МихаилПрохоров-ь2е6 ай бұрын
@@lubumbashi6666 скачают и что?
@lubumbashi66666 ай бұрын
@@JustLennyBenny I was wrong, this is just an air data module collecting pressure data for altitude and airspeed. It doesn't do any flight control. It's not that interesting, it's just a component, and what it's doing is not sophisticated, no need to lock it down.
@henria.2775 ай бұрын
The flight computers do not run betaflight. It is proprietary software but rather simple compared to the Pixhawk solution ukrainians use. They run on an FPGA, so no reversing for you. The Russians made significant changes to the base design. Flight computer and navigation modules have been changed as well as structural changes. @lubumbashi6666
@AeroGraphica5 ай бұрын
No one is talking about your accent because you are good at what you do 😄 Thanks for sharing !
@coolm986 ай бұрын
A man of taste I see, recognizing your usage of (probably mil spec) solid round milled pins/crimps for your jumpers/measurement test leads. I thought im the only one 🤤
@javaguru71416 ай бұрын
Can you elaborate? I can't find the ones you mean in the video. Thanks
@fredfred23636 ай бұрын
Yeah, the pressure sensors monitor altitude and air speed (pitot tube). Exact same system used in light aircraft. Don't forget, in your experiment you're probably reading pressure correction, as there is ambient pressure around. Depends on how the sensor is configured. It is possible to use new digital MEMS microphones in exactly the same way now (home weather stations). Great reverse engineering! Big clive would be proud. 😀🇬🇧👍🏻
@robmacl76 ай бұрын
The part choice is very much what you would see in a western design. Use of the stm32 in particular suggests familiarity with US/Europe hobby designs. But having a separate "air data computer" is more of a traditional aerospace engineering architecture.
@lubumbashi66666 ай бұрын
It is probably running something like Betaflight. It is real time and with a processor like M0+ there isn't much scope for fancy comms, so talking to satellites and overall guidance is probably on a different board.
@lo27406 ай бұрын
lol, nope in a MIL spec design, very far from that. Also that board layout is very poor and certainly not up to any western military standard, or even industrial/commercial. The datas in plain ASCI via RS232 without even a crc is also quite pathetic, i cannot think of doing such thing even in a basic comemrcial project, at the very least packed structure with checksum.
@MrCarGuy6 ай бұрын
@@lo2740Isn't that the entire point? Lack of adherence to quality standards and cheap mass production. Western equivalent costs what again?
@ismt1016 ай бұрын
@@lo2740 LoL. These shahed drones are very much reliable and cheap and that is the sole point of modern kamikaze drone warfare. They get the work done.
@jonathanbuzzard13766 ай бұрын
@@MrCarGuy The thing is board layout is not a production cost, it is a design cost, and frankly just show that it was not done by someone with experience as good layout doesn't take more time than bad layout for an experienced PCB designer. Protecting the messages with a CRC so you know you are getting good data is an undergraduate assignment if even that. You could just use Google and cut/paste the code in a few minutes. That all these are missing shows that while the concept might be good the execution is terrible.
@mattwietlispach76066 ай бұрын
Very cool Michel! I remember when Collins was developing these types of air pressure sensors in the early 80s and it took a lot of experimentation back then to get it right. They were used, of course, as sensor inputs for the air data computers at the time. I wonder if the same sensor technology went into this drone's sensors? Now we take for granted that things like 3" backup indicator sensors are as small as these. Makes me curious how these sensors work.
@6Diego1Diego96 ай бұрын
there's absolutely no way this is the same technology. for example the ADC is probably much less accurate than whats used in commercial aerospace
@fredfred23636 ай бұрын
Yeah, the old technology has been surpassed years ago. You can actually get a flight controller board for a drone/quad thing that has all this on board- for "altitude hold" for hovering like an aerial platform.
@tHaH4x0r6 ай бұрын
No idea how the sensors worked in the 80s, but these types of pressure sensors are generally MEMS. They contain a membrane separating two cavities. One cavity is connected to the input, and the other is either sealed (for absolute pressure sensors) or fed to the other input (differential pressure sensors). Deflection of the membrane is measured through capacitive or strain gauge sensors, of which the signal is processed and scaled/calibrated. Could you elaborate on the technology those early generation sensors were using? I am sure it would be very interesting.
@6Diego1Diego96 ай бұрын
@@tHaH4x0r they were probably all analoge
@satipsrl52076 ай бұрын
you can find a lot of pressure sensores , absolute differential, pwm output , linear output....just click at rs components catalogue
@gutsshots10636 ай бұрын
T’a fait du bon boulot 😉 merci
@tHaH4x0r6 ай бұрын
Quite simple, which makes sense. Cheap to produce and less to go wrong. I am surprised by the shear volume of data that it throws onto the serial bus. Firstly If the data is only used within the drone I didn't expect strings, rather just mapping the values directly to bytes. Secondly I didn't expect it to display things like mach number. For anything connected to that serial port it is probably much quicker to simply take the airspeed to calculate the machnumber yourself, compared to the extra wait and processing of the serial string. Perhaps they are using some kind of 'off-the-shelve' radio serial link to send this straight back to a PC for direct viewing. Which makes me wonder, how does the navigation work? As there's no GPS here it must be somewhere else and connect through that 9pin connector. It doesn't seem to squirt out any data request messages on the serial bus, so then how is it getting that kind of navigation info? Or perhaps this module is only for the air pressure and temperature calculations, making most processing on the drone quite distributed. But again, if the serial bus is only used 'internally' in the drone, I don't understand why they transmit the information over serial in string format.
@nullptr4726 ай бұрын
The processor consuming this data likely has an excess of processing power vs. the cost of doing string processing. Binary communication on the otherhand increases the cost with respect to communication between teams responsible for different parts of the drone and makes basic tooling more difficult -- eg. if you were validating the module with a test fixture using csv allows you to directly dump the data and throw it into a spreadsheet. Mach number is not solely dependent on airspeed. Keeping the 'intelligence' for this calculation in the instrument makes sense
@tHaH4x0r6 ай бұрын
@@nullptr472 I seriously doubt that there's a big team involved in this product, at least the electronics side. The design as shown is quite simple, and is even lacking some proper filtering and protection on the PSU input. (At least they put TVS diodes on the RS232 lines). My point was not about the processing power of processing strings persé, rather about the time it takes to transmit. The Shahed seems to have a max airspeed of 185kmh, so for the accuracy stated it could easily fit in a 16 bit value. Now it is transmitting 5 bytes for the same information. There's about 4 values per line, so that could save 12 bytes. You can skip the commas, another 5 bytes. Skip that weird pre-amble (PTAHAD*,B) which is constant anyway, saves you 7 bytes. Drop /r/n and you save 2 more. Thats 26 bytes per line even with such simple minimal effort. At 19.2kBaud that would shrink the time to transmit by almost 14ms. That is quite significant for the minimal amount of effort required. Even if time delays or data rate are not a problem (which it probably isnt), it means that you could slow the bus datarate down and get things more robust. Anyone that is able to design and test such boards, has practically no difference in basic tooling between raw bytes, or string data. Most serial loggers can display and log raw serial data without any trouble, never mind the abundance of cheap logic analyzers and oscilloscopes, or writing a simple python script of a few lines. If this serial data is used by another uc, it might even be easier to process the raw byte data rather than having to decode the string (always tedious). Also whether this was designed by a team or not, just having a list the byte structure commands is not any more difficult than having a list of possible strings and their structure to communicate. There is still the same number of inter-team communication interfaces to keep track of, just in a different format. tl;dr In my opinion, it is not any more difficult to use bytes, nor would it cause more difficulty in working with teams. Honestly I strongly suspect the choice of using strings is more down to quickly wanting to hack something together, or not having the knowledge to do it in a better way. An experienced engineer wouldn't have much trouble implementing it with raw data values, but for someone only used to arduinos and/or less experience with embedded, it seems more challenging than just throwing strings around. Also regarding the mach number, this device is not going supersonic. I doubt the mach number is relevant at all for their control as stated the max airspeed is
@posmoo97906 ай бұрын
When you don't have a parasitic arms industry to feed you can make some pretty cool stuff for a reasonable price.
@cogoid6 ай бұрын
This is just the *Air Data Computer*, which means it measures the air speed and barometric pressure. The flight controller is a separate module. The jamming resistant navigation receiver is another unit, and the radio link is yet another. And then there is other stuff such as engine controller, power systems, etc.
@nullptr4726 ай бұрын
@@tHaH4x0r I take your point about data latency and channel capacity > Honestly I strongly suspect the choice of using strings is more down to quickly wanting to hack something together, or not having the knowledge to do it in a better way. An experienced engineer wouldn't have much trouble implementing it with raw data values, but for someone only used to arduinos and/or less experience with embedded, it seems more challenging than just throwing strings around. The whole philosophy behind this drone is being low-cost and still effective. Part of that must come from lower development costs and understanding the 'good enough' point during development. Based on real-world performance they've clearly met the 'good enough' threshold. With respect to the 'cost' of a string protocol I do not doubt that tooling could be created to perform whatever binary conversions are required pretty easily, however, the cheapest tools are the ones that don't exist and the ability to 'eyeball' some raw output without consulting a spec is valuable (eg. sanity checking). Iran has some pretty sophisticated weapons systems so I have no doubt their weapons developers have access to good talent (I seriously doubt these people are 'arduino jockies' or whatever). My money is on the developers of this system being expeditious (if you want to call it 'hacking something together' that's your prerogative), and again the proof is in the results.
@UFAnders6 ай бұрын
Add this subject matter to the list of reasons I appreciate your channel!
@plemli6 ай бұрын
06:05 value 23.1 could be pressure in inches of mercury (782 hPa)
@piotrbudowlaniec91606 ай бұрын
Or temp in C degre
@bobsmith3696 ай бұрын
@@piotrbudowlaniec9160 The temperature probe seems to be external, unless one was connected for the test
@grhinson6 ай бұрын
I wonder if they use PCBway
@Elec-DIY6 ай бұрын
They don't seem to have the PCBway tracking silkscreen code on them, although I think there's an option to avoid it.
@rkan26 ай бұрын
Probably a similiar service, who it is, doesn't really matter. They could even have their own China imported PCB factory...
@avadhutagita37416 ай бұрын
"I wonder if they use PCBway" Who?
@Yulian.Mladenov6 ай бұрын
@@avadhutagita3741 The Iranians.Shahed drone manufacturers.
@serjioalvarez6 ай бұрын
@@rkan2 Five factory's
@mirzahosein22616 ай бұрын
great work..
@sashatc6 ай бұрын
C most likely stands for conditions and have one or two temperature measurements and also has to have QNH/pHg sea level atmospheric pressure - only question where this data would come from as it is weather dependent at sea level, maybe read from RS232
@cogoid6 ай бұрын
Nice. I wonder if this thing prints any additional information immediately after it powers up? Maybe it reports the version of firmware or something like that?
@lelabodemichel51626 ай бұрын
There is nothing but a first string with incorrect values.
@hamzaarif72496 ай бұрын
@@lelabodemichel5162 waiting for a video on anti tank missile
@youtubeurevil6 ай бұрын
@@lelabodemichel5162 Can you not do a memory read on the micro controller? Compiled program should be in there ( i bet it involves a lot of AD conversion and a simple algorythm stolen from somebody )
@a3103-j7g4 ай бұрын
@@youtubeurevil ever heard of open source?
@Frankey23106 ай бұрын
You don't know the "signification" of 23.1? What's the room temperature in your lab, Michel? It would make total sense for this slightly bizzare board (simultaneously over- and under-engineered) to measure air temperature, as it infuences air density, a factor in the pitot-static airspeed formula. It's not THAT significant, though, so one could just get away with reading temperature inside that cast iron box instead of overboard. If I was a betting man, I'd say the sensor is inside the absolute pressure sensor, which is a common thing and which explains why it would vary as you compress/decompress the air in its inlet (aside from just other components heating up the PCB).
@lelabodemichel51626 ай бұрын
I have the datasheet of this sensor (next video) and there isn't any temperature measurement inside, except for correction purposes. Edit 2024/07/18: You're maybe right, it seems that the temperature can be read from the part.
@Mr1Spring6 ай бұрын
Very nice. Can you read out the memory?
@VEC7ORlt6 ай бұрын
What is there to read? Init Read sensor Put to UART GOTO 10?
@Mr1Spring6 ай бұрын
@@VEC7ORlt firmware in the microcontroller
@VEC7ORlt6 ай бұрын
@@Mr1Spring I know what it is, I just transcribed/disassembled it for you.
@Mr1Spring6 ай бұрын
@@VEC7ORlt well, dissasmbly of the code might reveal something interesting like who programmed it, what tools they used etc. Forensic stuff.
@ergosum52606 ай бұрын
@VEC7ORlt scaling values woukd be useful as well as the input source (pins) for the unknown numbers like 0.07 Possibly a missing temperature sensor.
@minglv6 ай бұрын
What are the models of the two atmospheric sensors?
@qqqqqqqqqqqqqqqq76 ай бұрын
Looks like HPSD 3000
@ermuhambetcalmenov81046 ай бұрын
Thank you sir
@keysejkeysej5 ай бұрын
M. Waleczek- very Polish sounding name ;) do you have family in PL? greetings from Poland- you have tremendous knowlage and passion to this!
@lelabodemichel51625 ай бұрын
Yes I do, my parents were born in Poland.
@rfekztjpkrpd49886 ай бұрын
Kinda interestting that they don't use smaller (0402, 0603) caps for e..g the microcontroller. Also no glue or anything for the DCDC
@serjioalvarez6 ай бұрын
Потому что 1206 Россия производит сама.
@martin-vv9lf6 ай бұрын
they should put the smt components on one side for cheaper assembly.
@ФёдорЖук6 ай бұрын
Can we have an open-source Shared?
@Мойевропейскийжидобандеровский6 ай бұрын
Electronic - why not? Seems not to be very complicated compared to open source fpv.
@Vatsek6 ай бұрын
Good job, keep working.
@VV0RK6 ай бұрын
how does one acquire one of these?
@ivekuukkeli21566 ай бұрын
These devices or parts are sold in internet; country of origin Ukraine, not a suprise.
@arnoldn20176 ай бұрын
I sugggest that you wait patiently at a potential target of the Shahed 136
@dammitdad6 ай бұрын
If these boards are from Ukraine I would be suspicious. There is no reason for Iran to use American parts.
@burried_traces6 ай бұрын
Yes there is, Iran doesn't have a domestic tech industry that produces competing parts.
@BertoldVdb6 ай бұрын
@@dammitdadWhy not? These components are all so standard that their trade can't be effectively restricted. Also everything has at least one second source (except maybe the pressure sensors, idk which ones they are)
@therealspixycat6 ай бұрын
Which pressure sensors are used?
@craigrmeyer6 ай бұрын
How did you get this PCB anyhow?
@taaest-xek3 ай бұрын
What seller you buy from on ebay ?
@bimbomix99176 ай бұрын
la classe
@norm20076 ай бұрын
Bonjour Michel, beau travail! On peut comprendre que c'est un morceau d'épave de drone ou de ce qu'il en restait.
@Nayel-Khouatra6 ай бұрын
Je me demande quand-même où il peut les trouver 😂 actuellement je suis en train de développer un drone agriculteur et j'ai besoin de ce genre de capteurs mais je sais pas où en trouver ni comment les choisir, je me demande s'il est possible de trouver sur eBay cette carte électronique peut-être que je pourrais l'utiliser sur le drone
@mohamedbelafdal63626 ай бұрын
@@Nayel-Khouatra si tu veux une large selection d'électronique pour des essaies je recommande aliexpress, mais il faudrait s'orienter vers un fournisseur plus fiable comme LCSC ou un autre fournisseur européen
@Nayel-Khouatra6 ай бұрын
@mohamedbelafdal6362 Je commande souvent sur Aliexpress. Récemment, j'ai passé une commande chez JLC PCB pour un montage avec des composants de LCSC. Tout se passe bien jusqu'à présent, mais je ne sais pas comment choisir les capteurs différentiels. Aurais-tu des conseils à ce sujet ?
@revetastogne6 ай бұрын
Hi Michel! I'm curious, where did you get that shahed part? Was it from Ukraine? How it ended up in your hands and with what purpose?
@lelabodemichel51626 ай бұрын
From EBay, and I love air data computers!
@a3103-j7g4 ай бұрын
who wants to know it?
@BorgeltInstruments6 ай бұрын
I'm a little surprised that as they use an STM micro that they don't use the STM LPS22H absolute pressure sensors. They are so good you can do airspeed by connecting one to pitot and one to static. I've built thousands of devices similar to these for our sailplane instruments and other sailplane instrument manufacturers do the same.
@lelabodemichel51626 ай бұрын
There is no reason for that, these two things are uncorrelated. There are other factors like price and availability.
@BorgeltInstruments6 ай бұрын
@@lelabodemichel5162 the LPS22H is about the cheapest pressure sensor you can buy and readily available. I suspect the Shahed's avionics was designed before about 2017.
@AndyHullMcPenguin6 ай бұрын
Did you figure out the temperature sensor? I would guess it will be a jellybean part, probably a 10K ptc.
@lelabodemichel51626 ай бұрын
It has a small impact in one output value, nothing relevant. The value must be below 150 Ohms, because a resistor of 470 Ohms is connected to the TL431 which gives a constant current of 2.5/470=5,3mA. Therefore the maximum resistance is (3.3-2.5)/5.3mA = 150 Ohms, even less because I have supposed a complete saturation of the transistor.
@cogoid6 ай бұрын
@@lelabodemichel5162 Maybe they use Pt100, a 100 Ohm platinum resistance thermometer?
@tomhajjar82576 ай бұрын
@@lelabodemichel5162 FWIW, Temp vs VTH curve is "linear" (1-2.7v) if R25=1000. Nonlinear if R25=100 (2.2-3.2v). Cannot say if this is relevant...
@anudeepkulkarni32873 ай бұрын
which pressure sensor are they, anyone knows the part number or manufacturing company??
@lelabodemichel51623 ай бұрын
kzbin.info/www/bejne/opvThmlmo52ArMU
@anonanon51466 ай бұрын
OK, Glowie
@dmytromykhailiuta6 ай бұрын
why is 232, 485 or CAN not good?
@qazwsxqaz31636 ай бұрын
Пробовали ли вы считать код из контроллера?
@fredfred23636 ай бұрын
The pressure sensors are similar to car MAP sensors.
@satipsrl52076 ай бұрын
generally are bridged resistors in elastometric matrice configured as wheatstone bridge , also versions with op amp buffer inside...devices in car map sensors are can bus networked for avoiding disturbances and auto calibration facilities
@ramjet40256 ай бұрын
great explanation. Now to show the item on Amazon and Ebay or where Iran obtained them
@АдмиралХиппер6 ай бұрын
If someone wonder what does the first word in line mean - it s a "bird da/dc"
@ivekuukkeli21566 ай бұрын
It is very clear, that there are very few countries in the world, which design electronic components. Manufacturing is more diversited, for example: chips in Germany, packing in Vietnam, storage in Usa, selling in internet.
@franklindrebin006 ай бұрын
Chips von Funny Frisch.
@bobderbraumeister69196 ай бұрын
Die sind aber Ungarisch!
@EngineerAnandu6 ай бұрын
02:46 sir please include digital schematic instead of paper schematic.thanks
@lelabodemichel51626 ай бұрын
Just read the description!
@EngineerAnandu6 ай бұрын
Good.
@gumse6666 ай бұрын
No checksum or crc
@akahenke6 ай бұрын
He is only showing the strings that are sent over serial, depending on how RS232 is used it should have checksum buildt in to the protocol.
@lelabodemichel51626 ай бұрын
The two characters at the end of each string following the * is the checksum.
@gumse6666 ай бұрын
@@lelabodemichel5162 ok, yes I see now that it's a hex value
@reinerfranke54366 ай бұрын
As the STM get so rare at the pandemic that washing machine controller get desoldered the secondary sanction should be increased level by level. Not as this complete stop any chips go there but it will have the opportunity to uncover the hidden traces of delivery.
@JonaJona6 ай бұрын
How do you want to achieve that? Stop producing electronics for western companies in China entirely? They probably have enough STMs stockpiled in China for years of Shahed manufacturing
@artip7776 ай бұрын
Oh my dear! You're make me donate my washing machine! 😁 STM32 контроллеры не самые последние на свете. Есть CH32V, а также отечественные контроллеры. Вы переоцениваете свои санкции.
@reinerfranke54366 ай бұрын
@@artip777 Yes, do not overestimate life. Btw there is a chinese STM which remove some bugs, exact which are coded out for the orginal. This stop car manufacture for simply hardware swap. You make me curious as i know chips very well. What mean domestic STM?
@artip7776 ай бұрын
@@reinerfranke5436 I meant not the STM, Russia produces variety of MCUs. Like Микрон, Ангстрем, Миландр and НИИЭТ. All of them already under sanctions for 2-5 years. That's simple to swap this hardware, not a big deal.
@fluke196c6 ай бұрын
@@artip777 Оставайся сильным товарищ
@robertmonroe97286 ай бұрын
What is the sensor manufacturer?
@lelabodemichel51626 ай бұрын
Silicon Microstructures Incorprated
@serjioalvarez6 ай бұрын
@@lelabodemichel5162 All SMI sensors have the SMI label on top. And also the marking of the first pin. Here - clean ceramics. It's interesting what's on the other side. Are there any markings?
@lelabodemichel51626 ай бұрын
@@serjioalvarez Response on next video
@TheRadeonVideo6 ай бұрын
DB9 connector, RS-232, NMEA-like protocol and overall "generic" design. Looks like it is some off-the-shelf sensor, or local clone of such part.
@МихайлоЛомоносов-э8б6 ай бұрын
what connectors & phys you prefer & why?
@topduk6 ай бұрын
Later on the strings are likely combined with the positioning output stream and the line prefix would just serve to differentiate.
@SalihGoncu6 ай бұрын
But why convert the data to ascii to transmit to the flight controller? It will have to convert it back to binary at that end. - They could have optimized it a bit more. Also PCB size could have been 1/3 of what it is there. Anyway, we learn that rocket science isn't that hard.
@BertoldVdb6 ай бұрын
It seems to speak nmea0183. TAH is not a registered vendor code.
@rezah3366 ай бұрын
this is just a drone, rockets is another thing and much more advanced
@SalihGoncu6 ай бұрын
@@rezah336 actually no. Basic principles are the same. Guiding something in 3D without visual reference is the rocket science.
@rezah3366 ай бұрын
@@SalihGoncu rockets flies so much faster, much harder to control and be accurate
@SalihGoncu6 ай бұрын
@@rezah336 the theory and principle does not change.
@H33t3Speaks5 ай бұрын
You can probably knock these out of the sky with radar pulses.
@meysamabedi48066 ай бұрын
thanks plz analyze gnss or flight of shahed
@fredfred23636 ай бұрын
Yeah, I wonder if they use a stock sat nav chip or actually do circular maths to work out coordinates. Means there must be a programming interface just before launch, to determine route via waypoints and final destination.
@BertoldVdb6 ай бұрын
The Shahed GNSS receiver is a very complex board with two dual input SDR chips and a big FPGA. It does the position calculation internally.
@henria.2775 ай бұрын
@@fredfred2363 the Russians use the Kometa-M modules for GNSS. Everything is done in FPGA so no chance to analyze the code.
@nalakabandara53996 ай бұрын
Hi Mr.Michel,let me know how much accurate this pressure sensor to measure attitude..its practically can be use to measure attitude ,and display on screen
@ural8596 ай бұрын
The descendants of the prince of Persia are a smart people.
@paulpaulzadeh61726 ай бұрын
🇮🇷🇮🇷🇮🇷🇮🇷💪💪💪💪💪❤️❤️❤️
@dammitdad6 ай бұрын
Why didn't they use ESP processor? This board doesn't do anything complicated. All the necessary parts can be sourced from China
@topduk6 ай бұрын
That's an STM32G series, the question is really why not the Chinese version of the STM32F103.
@EvgenyUskov6 ай бұрын
did not Russia already lose in May 2022?
@xandervk23716 ай бұрын
It essentially did.
@a3103-j7g4 ай бұрын
@@xandervk2371 ...and then you woke up with the left hand in the toilet.
@xandervk23714 ай бұрын
@@a3103-j7g
@alexmartynov55033 ай бұрын
@@a3103-j7gне обращай внимания,они верят УНИАН,и после 20.05.2024
@chrisbaldi53956 ай бұрын
ok, so this is just the "avionics" module of the drone. Do you also have the "brain" which controls it and guides the drone to the designated GPS location?
@lelabodemichel51626 ай бұрын
I have other boards from this drone but I don't know their functionalities.
@ArnaudContet6 ай бұрын
The altitudes correspond to feet, not meters.
@vpsr-0146 ай бұрын
STM32G071 microcontroller I used in my water ionizer product 😂😂😂 wtf.
@questy446 ай бұрын
The PCB is poorly designed
@yottakm37646 ай бұрын
could you state why ?
@questy446 ай бұрын
@@yottakm3764 - Crystal XTL1 is connected trough via's which is something you avoid if possible, as it may cause excessive stray inductance. - There is no reason to default to 1206 or 1210 packages, especially if there is already a TSSOP package on the board. Any monkey can solder 0805 and 0603 - All of the capacitors are too far away from their intened pins, especcially bad are the row of capacitors under the STM32 - This board could have easilly been single sided which would have cut costs and difficulty - The return currents of the STM32 pass by the sensor, prefferebly you would place the sensor on the edge of the board, as far away from the input connector and other circuitry as possible. - General component placement and routing just looks quite random and poorly done.
@cyberphox16 ай бұрын
You have a point but being pragmatic it is good enough as it only has a single use. It’s just works
@oleshalka6 ай бұрын
@@questy44russian armed forces thank you for your support 💀🤦♂️
@codewarrior39036 ай бұрын
@@questy44You sir just contributed to the Iranian war effort 😅.
@mrshyman12576 ай бұрын
Датчик сеорости .
@sergeyogurtsov28696 ай бұрын
Поделка студентов. Серьезный инженер так не сделает.
@annaoaulinovna5 ай бұрын
its a bad low level technology
@arabelgarbo18696 ай бұрын
1013.25 mbar - 200mbar = 813.25 mbar ( according to height vs altitude graph ) this should be +/ - 2000 Meters = 6000 feet (6188) !!!! when did Russians get rid off the metric system?? It is a DID device in a device with western spice
@cogoid6 ай бұрын
I do not remember the date, but it was somewhat recently, on a historical time scale. Specifically for reporting flight level in aviation, Russians have indeed switched from meters to feet, to be like the rest of the world, and to avoid possible confusion. But I doubt that this is the reason for what we see in this device. It probably simply emulates some commercial Pitot sensor with an industry standard interface. We don't even know where this was designed, but it is probably manufactured in China.
@xb1t2mm3ujf26 ай бұрын
It's full of Russian parts :-))))
@a3103-j7g4 ай бұрын
from ukruinian wash machines
@oleggerashchenko220124 күн бұрын
PTAHA - це в перекладі - пташка.
@gunlover926 ай бұрын
I get the whole cost at scale principal but everything I've seen about shahed uav are very primitive by today's standards I could build something of better quality myself (not that I would mr. Fbi sir)
@МихаилПрохоров-ь2е6 ай бұрын
а зачем? накрутить стоимость?
@alexmartynov55033 ай бұрын
еще и оригинальный Лимбах 550 заказать,за 20т€а не клон md или кетай в 1т$и партию в 10.000шт@@МихаилПрохоров-ь2е