Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Moe RFD Harnesses: RFD Telem Tower Schematic RFD to PIXHAWK Harness

Note the RFD900 is different from the RFD900X

Power/Thermal Analysis

From datasheet https://files.rfdesign.com.au/Files/documents/RFD900%20DataSheet.pdf power output for RF is 30 dbm max is roughly 1 Watt. Max input power is 5.5 V at 1 A roughly gives 5.5 W. This means worst case the RFD device is dissipating 5.5 - 1 = 4.5 W of power as heat. at 85 C max you could do the math for thermal impedance of case and ambient but it becomes kinda approximate.

Testing the communication between 2 RFD900X.

...

Step 1: choose a USART port in STM32 Port. Select the mode to be Asychronous. Please make sure that the Buad rate is the same between two devices.

note the buad rate used for transmit between device is 46000kbits/s.

...

Inside the rfd config tool it is called the air rate.

the first buad rate is the communication between the computer and the rfd900 note 115200 is beyond most of the computer specification.

...

Step 2: connect the Rx pin on RFD 900 to the TX pin configured for the UART communication, and the Tx pin on RFD 900 to the Rx pin configured for the UART communication on STM32.

...

Step 3: call the standard library function

...

to send data between RFD 900x.

stupid things that might occur:

do not use transmit and recieve on usart2 and then view it on computer, cuz it will not showing you use any port but just recieve the data directly through uart

please note that HAL_UART_Transmit and HAL_UART_Recieve only accept pointer on the second argument

Hal library reference web: https://www.disca.upv.es/aperles/arm_cortex_m3/llibre/st/STM32F439xx_User_Manual/group__uart__exported__functions__group2.html

A flight harness for the RFD900X can be found in RFD to PIXHAWK Harness