main.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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 "hal.h"
  14. #include "ch.h"
  15. /*
  16. * Thread 1.
  17. */
  18. THD_WORKING_AREA(waThread1, 128);
  19. THD_FUNCTION(Thread1, arg) {
  20. (void)arg;
  21. while (true) {
  22. palSetPad(GPIOB, GPIOB_LED4);
  23. chThdSleepMilliseconds(250);
  24. palClearPad(GPIOB, GPIOB_LED4);
  25. chThdSleepMilliseconds(250);
  26. }
  27. }
  28. /*
  29. * Thread 2.
  30. */
  31. THD_WORKING_AREA(waThread2, 128);
  32. THD_FUNCTION(Thread2, arg) {
  33. (void)arg;
  34. while (true) {
  35. palSetPad(GPIOB, GPIOB_LED3);
  36. chThdSleepMilliseconds(500);
  37. palClearPad(GPIOB, GPIOB_LED3);
  38. chThdSleepMilliseconds(500);
  39. }
  40. }
  41. /*
  42. * Thread 3.
  43. */
  44. THD_WORKING_AREA(waThread3, 128);
  45. THD_FUNCTION(Thread3, arg) {
  46. (void)arg;
  47. /*
  48. * Activates the serial driver 1 using the driver default configuration.
  49. * PA9 and PA10 are routed to USART1.
  50. */
  51. sdStart(&SD1, NULL);
  52. palSetPadMode(GPIOA, 9, PAL_MODE_ALTERNATE(7)); /* USART1 TX. */
  53. palSetPadMode(GPIOA, 10, PAL_MODE_ALTERNATE(7)); /* USART1 RX. */
  54. while (true) {
  55. chnWrite(&SD1, (const uint8_t *)"Hello World!\r\n", 14);
  56. chThdSleepMilliseconds(2000);
  57. }
  58. }
  59. /*
  60. * Threads static table, one entry per thread. The number of entries must
  61. * match NIL_CFG_NUM_THREADS.
  62. */
  63. THD_TABLE_BEGIN
  64. THD_TABLE_ENTRY(waThread1, "blinker1", Thread1, NULL)
  65. THD_TABLE_ENTRY(waThread2, "blinker2", Thread2, NULL)
  66. THD_TABLE_ENTRY(waThread3, "hello", Thread3, NULL)
  67. THD_TABLE_END
  68. /*
  69. * Application entry point.
  70. */
  71. int main(void) {
  72. /*
  73. * System initializations.
  74. * - HAL initialization, this also initializes the configured device drivers
  75. * and performs the board-specific initializations.
  76. * - Kernel initialization, the main() function becomes a thread and the
  77. * RTOS is active.
  78. */
  79. halInit();
  80. chSysInit();
  81. /* This is now the idle thread loop, you may perform here a low priority
  82. task but you must never try to sleep or wait in this loop. Note that
  83. this tasks runs at the lowest priority level so any instruction added
  84. here will be executed after all other tasks have been started.*/
  85. while (true) {
  86. }
  87. }