main.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. palTogglePad(IOPORT2, PORTB_LED1);
  23. chThdSleepMilliseconds(500);
  24. }
  25. }
  26. /*
  27. * Thread 2.
  28. */
  29. THD_WORKING_AREA(waThread2, 128);
  30. THD_FUNCTION(Thread2, arg) {
  31. (void)arg;
  32. /*
  33. * Activates the serial driver 1 using the driver default configuration.
  34. * PE0(RX) and PE1(TX) are routed to USART0.
  35. */
  36. sdStart(&SD1, NULL);
  37. while (true) {
  38. chnWrite(&SD1, (const uint8_t *)"Hello World!\r\n", 14);
  39. chThdSleepMilliseconds(2000);
  40. }
  41. }
  42. /*
  43. * Threads static table, one entry per thread. The number of entries must
  44. * match NIL_CFG_NUM_THREADS.
  45. */
  46. THD_TABLE_BEGIN
  47. THD_TABLE_ENTRY(waThread1, "blinker", Thread1, NULL)
  48. THD_TABLE_ENTRY(waThread2, "hello", Thread2, NULL)
  49. THD_TABLE_END
  50. /*
  51. * Application entry point.
  52. */
  53. int main(void) {
  54. /*
  55. * System initializations.
  56. * - HAL initialization, this also initializes the configured device drivers
  57. * and performs the board-specific initializations.
  58. * - Kernel initialization, the main() function becomes a thread and the
  59. * RTOS is active.
  60. */
  61. halInit();
  62. chSysInit();
  63. /* This is now the idle thread loop, you may perform here a low priority
  64. task but you must never try to sleep or wait in this loop. Note that
  65. this tasks runs at the lowest priority level so any instruction added
  66. here will be executed after all other tasks have been started.*/
  67. while (true) {
  68. }
  69. }