nrf5/lcd: Correcting indention (tabs with space) in framebuffer module source and header.

This commit is contained in:
Glenn Ruben Bakke 2016-12-29 15:54:47 +01:00
parent c8ff22ced0
commit 82746d4549
2 changed files with 112 additions and 115 deletions

View File

@ -220,7 +220,6 @@ STATIC mp_obj_t lcd_mono_fb_fill(mp_obj_t self_in, mp_obj_t col_in) {
mp_obj_framebuf_t *self = MP_OBJ_TO_PTR(self_in);
mp_int_t col = mp_obj_get_int(col_in);
lcd_bg_color_set(self, col);
lcd_fg_color_set(self, !col);

View File

@ -31,8 +31,7 @@ extern const mp_obj_module_t mp_module_lcd_mono_fb;
#include <stdint.h>
typedef struct
{
typedef struct {
uint8_t bit0 : 1;
uint8_t bit1 : 1;
uint8_t bit2 : 1;
@ -41,7 +40,6 @@ typedef struct
uint8_t bit5 : 1;
uint8_t bit6 : 1;
uint8_t bit7 : 1;
} bits_t;
typedef struct {