main.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #include "ch.h"
  14. #include "hal.h"
  15. #include "chprintf.h"
  16. #include "lps25h.h"
  17. #define cls(chp) chprintf(chp, "\033[2J\033[1;1H")
  18. /*===========================================================================*/
  19. /* LPS25H related. */
  20. /*===========================================================================*/
  21. /* LPS25H Driver: This object represent an LPS25H instance */
  22. static LPS25HDriver LPS25HD1;
  23. static int32_t baroraw;
  24. static int32_t thermoraw;
  25. static float barocooked;
  26. static float thermocooked;
  27. static const I2CConfig i2ccfg = {
  28. OPMODE_I2C,
  29. 400000,
  30. FAST_DUTY_CYCLE_2,
  31. };
  32. static const LPS25HConfig lps25hcfg = {
  33. &I2CD1,
  34. &i2ccfg,
  35. LPS25H_SAD_VCC,
  36. NULL,
  37. NULL,
  38. NULL,
  39. NULL,
  40. LPS25H_ODR_7HZ,
  41. #if LPS25H_USE_ADVANCED
  42. LPS25H_BDU_CONTINUOUS,
  43. LPS25H_AVGP_512,
  44. LPS25H_AVGT_512
  45. #endif
  46. };
  47. /*===========================================================================*/
  48. /* Generic code. */
  49. /*===========================================================================*/
  50. static BaseSequentialStream* chp = (BaseSequentialStream*)&SD2;
  51. /*
  52. * LED blinker thread, times are in milliseconds.
  53. */
  54. static THD_WORKING_AREA(waThread1, 128);
  55. static THD_FUNCTION(Thread1, arg) {
  56. (void)arg;
  57. chRegSetThreadName("blinker");
  58. while (true) {
  59. palToggleLine(LINE_LED_GREEN);
  60. chThdSleepMilliseconds(500);
  61. }
  62. }
  63. /*
  64. * Application entry point.
  65. */
  66. int main(void) {
  67. /*
  68. * System initializations.
  69. * - HAL initialization, this also initializes the configured device drivers
  70. * and performs the board-specific initializations.
  71. * - Kernel initialization, the main() function becomes a thread and the
  72. * RTOS is active.
  73. */
  74. halInit();
  75. chSysInit();
  76. /* Configuring I2C SCK and I2C SDA related GPIOs .*/
  77. palSetLineMode(LINE_ARD_D15, PAL_MODE_ALTERNATE(4) |
  78. PAL_STM32_OSPEED_HIGHEST | PAL_STM32_OTYPE_OPENDRAIN);
  79. palSetLineMode(LINE_ARD_D14, PAL_MODE_ALTERNATE(4) |
  80. PAL_STM32_OSPEED_HIGHEST | PAL_STM32_OTYPE_OPENDRAIN);
  81. /* Activates the serial driver 2 using the driver default configuration.*/
  82. sdStart(&SD2, NULL);
  83. /* Creates the blinker thread.*/
  84. chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
  85. /* LPS25H Object Initialization.*/
  86. lps25hObjectInit(&LPS25HD1);
  87. /* Activates the LPS25H driver.*/
  88. lps25hStart(&LPS25HD1, &lps25hcfg);
  89. /* Normal main() thread activity, printing MEMS data on the SD2. */
  90. while (true) {
  91. lps25hBarometerReadRaw(&LPS25HD1, &baroraw);
  92. chprintf(chp, "LPS25HD1 Barometer raw data...\r\n");
  93. chprintf(chp, "Pres: %d\r\n", baroraw);
  94. lps25hThermometerReadRaw(&LPS25HD1, &thermoraw);
  95. chprintf(chp, "LPS25HD1 Thermometer raw data...\r\n");
  96. chprintf(chp, "Temp: %d\r\n", &thermoraw);
  97. lps25hBarometerReadCooked(&LPS25HD1, &barocooked);
  98. chprintf(chp, "LPS25HD1 Barometer cooked data...\r\n");
  99. chprintf(chp, "Pres: %.2f\r\n", barocooked);
  100. lps25hThermometerReadCooked(&LPS25HD1, &thermocooked);
  101. chprintf(chp, "LPS25HD1 Thermometer cooked data...\r\n");
  102. chprintf(chp, "Temp: %.2f\r\n", thermocooked);
  103. chThdSleepMilliseconds(100);
  104. cls(chp);
  105. }
  106. lps25hStop(&LPS25HD1);
  107. }