Embedded Linux S3C2440 Application Development and Debugging

Summary Write your own application and include the application into the final image to be downloaded into the S3C2440 board, and you can debug the application by using GDB. User Application Below is the simple user application, print a string, and reverse the string and print again. #include <stdio.h> #include <string.h> #include <stdlib.h> void my_print(char […]