bmp180: Fix more 'temperatue' typos (thanks @atomman)
This commit is contained in:
parent
cceb9de300
commit
c5a53c87fa
1 changed files with 2 additions and 2 deletions
|
@ -34,12 +34,12 @@ As all data aqquired from the BMP180/BMP085 is provided to the `bmp180_informUse
|
||||||
|
|
||||||
```
|
```
|
||||||
// Own BMP180 User Inform Implementation
|
// Own BMP180 User Inform Implementation
|
||||||
bool my_informUser(const xQueueHandle* resultQueue, uint8_t cmd, bmp180_temp_t temperatue, bmp180_press_t pressure) {
|
bool my_informUser(const xQueueHandle* resultQueue, uint8_t cmd, bmp180_temp_t temperature, bmp180_press_t pressure) {
|
||||||
my_event_t ev;
|
my_event_t ev;
|
||||||
|
|
||||||
ev.event_type = MY_EVT_BMP180;
|
ev.event_type = MY_EVT_BMP180;
|
||||||
ev.bmp180_data.cmd = cmd;
|
ev.bmp180_data.cmd = cmd;
|
||||||
ev.bmp180_data.temperatue = temperatue;
|
ev.bmp180_data.temperature = temperature;
|
||||||
ev.bmp180_data.pressure = pressure;
|
ev.bmp180_data.pressure = pressure;
|
||||||
|
|
||||||
return (xQueueSend(*resultQueue, &ev, 0) == pdTRUE);
|
return (xQueueSend(*resultQueue, &ev, 0) == pdTRUE);
|
||||||
|
|
Loading…
Reference in a new issue