summaryrefslogtreecommitdiff
path: root/board/casta
diff options
context:
space:
mode:
Diffstat (limited to 'board/casta')
-rw-r--r--board/casta/board.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/board/casta/board.c b/board/casta/board.c
index a14e669a01..070ba45496 100644
--- a/board/casta/board.c
+++ b/board/casta/board.c
@@ -73,18 +73,15 @@ const struct temp_sensor_t temp_sensors[] = {
[TEMP_SENSOR_BATTERY] = {.name = "Battery",
.type = TEMP_SENSOR_TYPE_BATTERY,
.read = charge_get_battery_temp,
- .idx = 0,
- .action_delay_sec = 1},
+ .idx = 0},
[TEMP_SENSOR_AMBIENT] = {.name = "Ambient",
.type = TEMP_SENSOR_TYPE_BOARD,
.read = get_temp_3v3_51k1_47k_4050b,
- .idx = ADC_TEMP_SENSOR_AMB,
- .action_delay_sec = 5},
+ .idx = ADC_TEMP_SENSOR_AMB},
[TEMP_SENSOR_CHARGER] = {.name = "Charger",
.type = TEMP_SENSOR_TYPE_BOARD,
.read = get_temp_3v3_13k7_47k_4050b,
- .idx = ADC_TEMP_SENSOR_CHARGER,
- .action_delay_sec = 1},
+ .idx = ADC_TEMP_SENSOR_CHARGER},
};
BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);