makcu-cpp
A library to interact with makcu devices
File Explorer
- ci.yml
- basic_usage.cpp
- baud_rate_test.cpp
- build.bat
- build.sh
- c_api_test.c
- CMakeLists.txt
- demo.cpp
- README.md
- makcu.h
- makcu_c.h
- serialport.h
- makcu.cpp
- makcu_c.cpp
- serialport.cpp
- .gitignore
- api-reference.html
- build.bat
- build.sh
- CMakeLists.txt
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pkg-config
View Details ▼
pkg-config
Provide the details of installed libraries for compiling applications.
pkg-config --libs {{library1 library2 ...}}
Get the list of libraries and their dependencies:
pkg-config --cflags --libs {{library1 library2 ...}}
Get the list of libraries, their dependencies, and proper cflags for gcc:
pkg-config --modversion {{module1 module2 ...}}
Print the version of the linked modules:
usermod
View Details ▼
usermod
Modify a user account.
See also: `users`, `useradd`, `userdel`.
sudo usermod {{[-l|--login]}} {{new_username}} {{username}}
Change a username:
sudo usermod {{[-u|--uid]}} {{id}} {{username}}
Change a user ID:
sudo usermod {{[-s|--shell]}} {{path/to/shell}} {{username}}
Change a user shell:
