/* ChibiOS/RT - Copyright (C) 2014 Uladzimir Pylinsky aka barthess Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include "hal.h" #include "boarddef.h" #include "onewire.h" /* ****************************************************************************** * DEFINES ****************************************************************************** */ /* ****************************************************************************** * EXTERNS ****************************************************************************** */ /* ****************************************************************************** * PROTOTYPES ****************************************************************************** */ /* * Forward declarations */ #if ONEWIRE_USE_STRONG_PULLUP static void strong_pullup_assert(void); static void strong_pullup_release(void); #endif /* ****************************************************************************** * GLOBAL VARIABLES ****************************************************************************** */ static uint8_t testbuf[12]; /* stores 3 temperature values in millicelsius */ static int32_t temperature[3]; static size_t devices_on_bus = 0; static onewire_error_t error_code; /* * Config for underlying PWM driver. * Note! It is NOT constant because 1-wire driver needs to change them * during functioning. */ static PWMConfig pwm_cfg = { 0, 0, NULL, { {PWM_OUTPUT_DISABLED, NULL}, {PWM_OUTPUT_DISABLED, NULL}, {PWM_OUTPUT_DISABLED, NULL}, {PWM_OUTPUT_DISABLED, NULL} }, 0, #if STM32_PWM_USE_ADVANCED 0, #endif 0, 0 }; /* * */ static const onewireConfig ow_cfg = { &PWMD3, &pwm_cfg, PWM_OUTPUT_ACTIVE_LOW, ONEWIRE_MASTER_CHANNEL, ONEWIRE_SAMPLE_CHANNEL, ONEWIRE_PORT, ONEWIRE_PIN, #if defined(STM32F1XX) ONEWIRE_PAD_MODE_IDLE, #endif ONEWIRE_PAD_MODE_ACTIVE, #if ONEWIRE_USE_STRONG_PULLUP strong_pullup_assert, strong_pullup_release #endif }; /* ****************************************************************************** ****************************************************************************** * LOCAL FUNCTIONS ****************************************************************************** ****************************************************************************** */ #if ONEWIRE_USE_STRONG_PULLUP /** * */ static void strong_pullup_assert(void) { palSetPadMode(ONEWIRE_PORT, ONEWIRE_PIN, PAL_MODE_STM32_ALTERNATE_PUSHPULL); } /** * */ static void strong_pullup_release(void) { palSetPadMode(ONEWIRE_PORT, ONEWIRE_PIN, PAL_MODE_STM32_ALTERNATE_OPENDRAIN); } #endif /* ONEWIRE_USE_STRONG_PULLUP */ /* ****************************************************************************** * EXPORTED FUNCTIONS ****************************************************************************** */ /* * */ void onewireMeasure(void) { error_code = onewire_OK; int16_t tmp; uint8_t rombuf[24]; size_t i = 0; bool presence; onewireObjectInit(&OWD1); onewireStart(&OWD1, &ow_cfg); #if ONEWIRE_SYNTH_SEARCH_TEST synthSearchRomTest(&OWD1); #endif for (i=0; i<3; i++) temperature[i] = -666; if (true == onewireReset(&OWD1)){ memset(rombuf, 0x55, sizeof(rombuf)); devices_on_bus = onewireSearchRom(&OWD1, rombuf, 3); if (devices_on_bus == 0) { error_code = onewire_No_Dev; return; } if (1 == devices_on_bus){ /* test read rom command */ presence = onewireReset(&OWD1); if (true != presence) { error_code = onewire_Dev_Lost; return; } testbuf[0] = ONEWIRE_CMD_READ_ROM; onewireWrite(&OWD1, testbuf, 1, 0); onewireRead(&OWD1, testbuf, 8); if (testbuf[7] != onewireCRC(testbuf, 7)) { error_code = onewire_CRC_Err; return; } if (0 != memcmp(rombuf, testbuf, 8)) { error_code = onewire_MemCmp_Err; return; } } /* start temperature measurement on all connected devices at once */ presence = onewireReset(&OWD1); if (true != presence) { error_code = onewire_Dev_Lost; return; } testbuf[0] = ONEWIRE_CMD_SKIP_ROM; testbuf[1] = ONEWIRE_CMD_CONVERT_TEMP; #if ONEWIRE_USE_STRONG_PULLUP onewireWrite(&OWD1, testbuf, 2, TIME_MS2I(750)); #else onewireWrite(&OWD1, testbuf, 2, 0); /* poll bus waiting ready signal from all connected devices */ testbuf[0] = 0; while (testbuf[0] == 0){ osalThreadSleepMilliseconds(50); onewireRead(&OWD1, testbuf, 1); } #endif for (i=0; i devices_on_bus || num < devices_on_bus) { return -999; } else { return temperature[num]; } }