main.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 "usbcfg.h"
  16. SerialUSBDriver SDU1;
  17. static THD_WORKING_AREA(waThread1, 32);
  18. static THD_FUNCTION(Thread1, arg) {
  19. (void)arg;
  20. chRegSetThreadName("Blinker");
  21. while (true) {
  22. palTogglePad(IOPORT3, BOARD_LED1);
  23. chThdSleepMilliseconds(500);
  24. }
  25. }
  26. /*
  27. * Application entry point.
  28. */
  29. int main(void) {
  30. /*
  31. * System initializations.
  32. * - HAL initialization, this also initializes the configured device drivers
  33. * and performs the board-specific initializations.
  34. * - Kernel initialization, the main() function becomes a thread and the
  35. * RTOS is active.
  36. */
  37. halInit();
  38. chSysInit();
  39. palSetPadMode(IOPORT3, BOARD_LED1, PAL_MODE_OUTPUT_PUSHPULL);
  40. palClearPad(IOPORT3, BOARD_LED1);
  41. /*
  42. * Initializes a serial-over-USB CDC driver.
  43. */
  44. sduObjectInit(&SDU1);
  45. sduStart(&SDU1, &serusbcfg);
  46. /*
  47. * Activates the USB driver and then the USB bus pull-up on D+.
  48. * Note, a delay is inserted in order to not have to disconnect the cable
  49. * after a reset.
  50. */
  51. usbDisconnectBus(serusbcfg.usbp);
  52. chThdSleepMilliseconds(1000);
  53. usbStart(serusbcfg.usbp, &usbcfg);
  54. usbConnectBus(serusbcfg.usbp);
  55. /*
  56. * Starts the LED blinker thread.
  57. */
  58. chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
  59. while (true) {
  60. if (SDU1.config->usbp->state == USB_ACTIVE) {
  61. chnWrite(&SDU1, (const uint8_t *)"Hello from Arduino Leonardo!\r\n", 30);
  62. }
  63. chThdSleepMilliseconds(2113);
  64. }
  65. }