Update unitemp

This commit is contained in:
MX 2022-12-30 20:01:12 +03:00
parent b5aede37c7
commit 6b30dc5114
No known key found for this signature in database
GPG key ID: 6C4C311DFD4B4AB5
6 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,6 @@
*/
#include "Sensors.h"
#include <furi_hal_power.h>
#include <m-string.h>
//Порты ввода/вывода, которые не были обозначены в общем списке
const GpioPin SWC_10 = {.pin = LL_GPIO_PIN_14, .port = GPIOA};
@ -344,7 +343,7 @@ bool unitemp_sensors_load(void) {
//Сколько байт до конца строки
size_t line_end = 0;
while(line_end != STRING_FAILURE && line_end != (size_t)(file_size - 1)) {
while(line_end != ((size_t)-1) && line_end != (size_t)(file_size - 1)) {
//Имя датчика
char name[11] = {0};
//Тип датчика

View file

@ -21,7 +21,6 @@
#include "./views/UnitempViews.h"
#include <furi_hal_power.h>
#include <m-string.h>
/* Переменные */
//Данные приложения
@ -147,7 +146,7 @@ bool unitemp_loadSettings(void) {
//Сколько байт до конца строки
size_t line_end = 0;
while(line_end != STRING_FAILURE && line_end != (size_t)(file_size - 1)) {
while(line_end != ((size_t)-1) && line_end != (size_t)(file_size - 1)) {
char buff[20] = {0};
sscanf(((char*)(file_buf + line_end)), "%s", buff);

View file

@ -18,7 +18,9 @@
#include "UnitempViews.h"
#include "unitemp_icons.h"
#include <assets_icons.h>
extern const Icon I_ButtonRight_4x7;
extern const Icon I_ButtonLeft_4x7;
extern const Icon I_Ok_btn_9x9;
static View* view;

View file

@ -18,7 +18,6 @@
#include "UnitempViews.h"
#include <gui/modules/variable_item_list.h>
#include <stdio.h>
#include <assets_icons.h>
uint32_t _prev_view_id;

View file

@ -18,7 +18,8 @@
#include "UnitempViews.h"
#include <gui/modules/variable_item_list.h>
#include <stdio.h>
#include <assets_icons.h>
extern const Icon I_Cry_dolph_55x52;
//Текущий вид
static View* view;

View file

@ -18,7 +18,7 @@
#include "UnitempViews.h"
#include "unitemp_icons.h"
#include <assets_icons.h>
extern const Icon I_DolphinCommon_56x48;
void unitemp_widgets_alloc(void) {
app->widget = widget_alloc();