do { \
COMPUTE_BITS(args, FIELD_BITS(bytes), object, bytes); \
DRAW_AREA_WITH_LABEL(args, FIELD_BITS(bytes), object, color, label); \
- PRINT_CAMM(args, bytes, object, BPS, _("Bps")); \
+ PRINT_CAMM(args, bytes, object, BPS, _("bps")); \
} while (0)
#endif /* TELEMETRY_GRAPHS_GRAPH_H */
// Receive Rate
DRAW_LINE2_WITH_LABEL(args, "rx_rate", object, COLOR_RX, _("Receive Rate"));
- PRINT_CAMM(args, "rx_rate", object, BPS, _("Bps"));
+ PRINT_CAMM(args, "rx_rate", object, BPS, _("bps"));
// Transmit Rate
DRAW_LINE2_WITH_LABEL(args, "tx_rate", object, COLOR_TX, _("Transmit Rate"));
- PRINT_CAMM(args, "tx_rate", object, BPS, _("Bps"));
+ PRINT_CAMM(args, "tx_rate", object, BPS, _("bps"));
return 0;
}