From 0b1f573a726d4043d51ce5f9549dd0c8bb6b1d96 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Thu, 3 Nov 2022 00:53:28 +0300 Subject: [PATCH] update naming --- applications/plugins/am2320_temp_sensor/application.fam | 4 ++-- applications/plugins/am2320_temp_sensor/temperature_sensor.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/plugins/am2320_temp_sensor/application.fam b/applications/plugins/am2320_temp_sensor/application.fam index cd4afdc4a..9a17539dd 100644 --- a/applications/plugins/am2320_temp_sensor/application.fam +++ b/applications/plugins/am2320_temp_sensor/application.fam @@ -2,8 +2,8 @@ App( appid="am2320_temp_sensor", name="[AM2320] Temp. Sensor", apptype=FlipperAppType.EXTERNAL, - entry_point="temperature_sensor_app", - cdefines=["APP_TEMPERATURE_SENSOR"], + entry_point="am_temperature_sensor_app", + cdefines=["APP_AM_TEMPERATURE_SENSOR"], requires=[ "gui", ], diff --git a/applications/plugins/am2320_temp_sensor/temperature_sensor.c b/applications/plugins/am2320_temp_sensor/temperature_sensor.c index 236c5e2d2..212014e22 100644 --- a/applications/plugins/am2320_temp_sensor/temperature_sensor.c +++ b/applications/plugins/am2320_temp_sensor/temperature_sensor.c @@ -234,7 +234,7 @@ static void temperature_sensor_timer_callback(FuriMessageQueue* event_queue) { // App entry point -int32_t temperature_sensor_app(void* p) { +int32_t am_temperature_sensor_app(void* p) { UNUSED(p); furi_hal_power_suppress_charge_enter();