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();