libSerial/README.md

18 lines
665 B
Markdown
Raw Permalink Normal View History

2022-05-11 12:58:14 +02:00
# Sources for compiling a lib devoted to use Serial port 3-pins of CG10/20/50
2022-07-09 18:03:56 +02:00
% giteapc install Slyvtt/libSerial
to get the library, and then just #include <serial.h> and -lserial to use it.
2022-05-11 12:58:14 +02:00
just run `make` in the root directory of the project.
it will produce the library `libserial.a`
So you need to copy `libserial.a` in the lib folder of sh-elf-gcc compiler
and the file `include/serial.h` into the include directory
2022-07-09 18:03:56 +02:00
`make install` will install the lib and the header files in the right directories.
2022-05-11 12:58:14 +02:00
2022-07-09 18:03:56 +02:00
`make clean` cleans all the `.o` and the library from the sources folders.
2022-05-11 12:58:14 +02:00
2022-07-09 18:03:56 +02:00
In order to use the lib, then just #include <serial.h> and -lserial to use it.