More MKS UI prelim. cleanup

This commit is contained in:
Scott Lahteine
2021-01-14 00:23:56 -06:00
committed by Scott Lahteine
parent a3d6442d02
commit 86bf374fc4
97 changed files with 203 additions and 300 deletions

View File

@@ -58,8 +58,8 @@ class WifiSerial {
void begin(uint32 baud);
void begin(uint32 baud,uint8_t config);
void end();
int available(void);
int read(void);
int available();
int read();
int write(uint8_t);
inline void wifi_usart_irq(usart_reg_map *regs) {
/* Handling RXNEIE and TXEIE interrupts.
@@ -87,8 +87,7 @@ class WifiSerial {
}
}
int wifi_rb_is_full(void);
int wifi_rb_is_full();
struct usart_dev *usart_device;
private: