static_cast cleanup

This commit is contained in:
Avamander 2021-06-25 00:40:55 +03:00 committed by JF002
parent 2f479e5fc7
commit bdb5965f1a
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ Battery::Battery() {
} }
void Battery::Init() { void Battery::Init() {
nrf_gpio_cfg_input(chargingPin, (nrf_gpio_pin_pull_t) GPIO_PIN_CNF_PULL_Pullup); nrf_gpio_cfg_input(chargingPin, static_cast<nrf_gpio_pin_pull_t> GPIO_PIN_CNF_PULL_Pullup);
} }
void Battery::Update() { void Battery::Update() {

View File

@ -203,11 +203,11 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
bleAddr[2], bleAddr[2],
bleAddr[1], bleAddr[1],
bleAddr[0], bleAddr[0],
(int) mon.total_size - mon.free_size, static_cast<int>(mon.total_size - mon.free_size),
mon.used_pct, mon.used_pct,
mon.max_used, mon.max_used,
mon.frag_pct, mon.frag_pct,
(int) mon.free_biggest_size, static_cast<int>(mon.free_biggest_size),
0); 0);
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0); lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
return std::make_unique<Screens::Label>(2, 5, app, label); return std::make_unique<Screens::Label>(2, 5, app, label);