Commit befaccef authored by tstellanova's avatar tstellanova

fix bogus type conversion

parent b6c11a8d
...@@ -56,8 +56,8 @@ public: ...@@ -56,8 +56,8 @@ public:
UAS(MAVLinkProtocol* protocol, int id = 0); UAS(MAVLinkProtocol* protocol, int id = 0);
~UAS(); ~UAS();
static const int lipoFull = 4.2f; ///< 100% charged voltage static const float lipoFull = 4.2f; ///< 100% charged voltage
static const int lipoEmpty = 3.5f; ///< Discharged voltage static const float lipoEmpty = 3.5f; ///< Discharged voltage
/* MANAGEMENT */ /* MANAGEMENT */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment