Format code according to conventions (#11905)
Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
		
							parent
							
								
									4ddb5abea5
								
							
						
					
					
						commit
						c27a778281
					
				
					 5 changed files with 17 additions and 27 deletions
				
			
		| 
						 | 
				
			
			@ -18,12 +18,7 @@
 | 
			
		|||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
static SerialConfig serialConfig = {
 | 
			
		||||
    SERIAL_DEFAULT_BITRATE,
 | 
			
		||||
    SD1_CR1,
 | 
			
		||||
    SD1_CR2,
 | 
			
		||||
    SD1_CR3
 | 
			
		||||
};
 | 
			
		||||
static SerialConfig serialConfig = {SERIAL_DEFAULT_BITRATE, SD1_CR1, SD1_CR2, SD1_CR3};
 | 
			
		||||
 | 
			
		||||
void uart_init(uint32_t baud) {
 | 
			
		||||
    static bool is_initialised = false;
 | 
			
		||||
| 
						 | 
				
			
			@ -44,9 +39,7 @@ void uart_init(uint32_t baud) {
 | 
			
		|||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void uart_putchar(uint8_t c) {
 | 
			
		||||
    sdPut(&SERIAL_DRIVER, c);
 | 
			
		||||
}
 | 
			
		||||
void uart_putchar(uint8_t c) { sdPut(&SERIAL_DRIVER, c); }
 | 
			
		||||
 | 
			
		||||
uint8_t uart_getchar(void) {
 | 
			
		||||
    msg_t res = sdGet(&SERIAL_DRIVER);
 | 
			
		||||
| 
						 | 
				
			
			@ -54,6 +47,4 @@ uint8_t uart_getchar(void) {
 | 
			
		|||
    return (uint8_t)res;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool uart_available(void) {
 | 
			
		||||
    return !sdGetWouldBlock(&SERIAL_DRIVER);
 | 
			
		||||
}
 | 
			
		||||
bool uart_available(void) { return !sdGetWouldBlock(&SERIAL_DRIVER); }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue