Revert "MPU Hal (#1492)"

This reverts commit eed4296890.
This commit is contained in:
MX
2022-08-04 05:02:23 +03:00
parent db5c232f50
commit 43345ba0bb
29 changed files with 62 additions and 238 deletions

View File

@@ -147,7 +147,7 @@ static void text_input_backspace_cb(TextInputModel* model) {
static void text_input_view_draw_callback(Canvas* canvas, void* _model) {
TextInputModel* model = _model;
uint8_t text_length = model->text_buffer ? strlen(model->text_buffer) : 0;
uint8_t text_length = strlen(model->text_buffer);
uint8_t needed_string_width = canvas_width(canvas) - 8;
uint8_t start_pos = 4;