mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-20 23:04:55 +02:00
23 lines
349 B
C
23 lines
349 B
C
/**
|
|
* FILE: main.s
|
|
*
|
|
* DESCRIPTION: This file contains the main function for the hello-world program utilizing the STM32F401CC6 microcontroller.
|
|
*
|
|
* AUTHOR: Kevin Thomas
|
|
* DATE: October 6, 2023
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "usart.h"
|
|
|
|
int main(void)
|
|
{
|
|
usart2_tx_init();
|
|
|
|
while (1)
|
|
{
|
|
printf("hello, world\r\n");
|
|
}
|
|
}
|