You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
231 B

#include "print.h"
void print_device_mounted(const char *const description, const uint8_t count) {
print_string("\r\n $");
print_uint16(count);
print_string(description);
if (count > 1)
print_string("S$");
}