main.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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(GPIOC, GPIOC_LED4);
  23. chThdSleepMilliseconds(250);
  24. palClearPad(GPIOC, GPIOC_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(GPIOC, GPIOC_LED3);
  36. chThdSleepMilliseconds(500);
  37. palClearPad(GPIOC, GPIOC_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. */
  50. sdStart(&SD1, NULL);
  51. while (true) {
  52. chnWrite(&SD1, (const uint8_t *)"Hello World!\r\n", 14);
  53. chThdSleepMilliseconds(2000);
  54. }
  55. }
  56. /*
  57. * Threads static table, one entry per thread. The number of entries must
  58. * match NIL_CFG_NUM_THREADS.
  59. */
  60. THD_TABLE_BEGIN
  61. THD_TABLE_ENTRY(waThread1, "blinker1", Thread1, NULL)
  62. THD_TABLE_ENTRY(waThread2, "blinker2", Thread2, NULL)
  63. THD_TABLE_ENTRY(waThread3, "hello", Thread3, NULL)
  64. THD_TABLE_END
  65. /*
  66. * Application entry point.
  67. */
  68. int main(void) {
  69. /*
  70. * System initializations.
  71. * - HAL initialization, this also initializes the configured device drivers
  72. * and performs the board-specific initializations.
  73. * - Kernel initialization, the main() function becomes a thread and the
  74. * RTOS is active.
  75. */
  76. halInit();
  77. chSysInit();
  78. /* This is now the idle thread loop, you may perform here a low priority
  79. task but you must never try to sleep or wait in this loop. Note that
  80. this tasks runs at the lowest priority level so any instruction added
  81. here will be executed after all other tasks have been started.*/
  82. while (true) {
  83. }
  84. }