TImada / raspi4_freertos

FreeRTOS UART sample porting to Raspberry Pi 4B.
MIT License
54 stars 20 forks source link

Which libraries are ported? #5

Closed LabNelson closed 1 year ago

LabNelson commented 1 year ago

This is also no real issue, im just very interested :) I have a program that uses FreeRTOS on an ARM Cortex A9 processor. There i use for example Ethernet ( #include FreeRTOSIPConfig.h). The corresponding .c is realised in a library. Now i want to use your FreeRTOS port to run the program on RPi (ARM Cortex A72). Are all the libraries (with e.g. FreeRTOSIPConfig.c) already ported to the RPi? Or did you "only" ported the uart interface? I cant find the FreeRTOSIPConfig.h or .c in your repo.

TImada commented 1 year ago

Are all the libraries (with e.g. FreeRTOSIPConfig.c) already ported to the RPi? Or did you "only" ported the uart interface? I cant find the FreeRTOSIPConfig.h or .c in your repo.

You can use only PL011 UARTs if you use this repository. Implement a device driver by yourself if you want to use other peripheral devices.

LabNelson commented 1 year ago

Ok, thank you. I'll get in touch with you, when i implemented device drivers.