Files
paparazzi/conf
Allen Ibara 2d983a949b OveroSpiLink Improvements
Use "up" and "down" instead of "in" and "out" since the latter are ambiguous depending on which side of the link you believe you are on.

Replace -OVERO_LINK_MSG_UNION with
OVERO_LINK_MSG_UP and OVERO_LINK_MSG_DOWN

This allows the union type to be defined once, instead of repeating the union boilerplate over and over again.

Defining the up and down messages independently is useful in the case where two airframes share one message but not the other. One can also use the same message for Up and Down (ala AutopilotMessageFoo for stm_test_spi_link)

Change the overo_link union too, replacing the UNION type with the new UP/DOWN types. This way we get type checking on up vs down message type.

For example:
msg_out = &overo_link.msg_out.uni.up;
becomes:
msg_up = &overo_link.up.msg;
2010-07-15 23:18:52 +00:00
..
2010-07-15 23:18:52 +00:00
2010-05-11 14:26:35 +00:00
2010-03-29 15:28:40 +00:00
2010-03-25 06:59:11 +00:00
2010-07-15 04:30:48 +00:00
2009-10-17 07:22:42 +00:00