1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #include "ch.h"
- #include "hal.h"
- const UARTConfig usart1cfg = {
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- 115200,
- false,
- false,
- false,
- USART_CMODE_ASYNCHRONOUS,
- USART_PMODE_DISABLE,
- false,
- USART_CHSIZE_8BIT,
- };
- static THD_WORKING_AREA(waThread1, 32);
- static THD_FUNCTION(Thread1, arg) {
- (void)arg;
- chRegSetThreadName("Blinker");
- while (true) {
- palClearPad(IOPORT5, PORTE_LED);
- chThdSleepMilliseconds(2000);
- palSetPad(IOPORT5, PORTE_LED);
- chThdSleepMilliseconds(50);
- }
- }
- int main(void) {
-
- halInit();
- chSysInit();
-
- palSetPadMode(IOPORT3, PIN3, PAL_MODE_OUTPUT_PUSHPULL);
- palSetPadMode(IOPORT3, PIN2, PAL_MODE_INPUT_PULLUP);
-
- uartStart(&USART1D, &usart1cfg);
-
- chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
- while (TRUE) {
- uartStartSend(&USART1D,14, (const uint8_t *)"Hello world!\r\n");
- chThdSleepMilliseconds(2000);
- }
- }
|