Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 972 Bytes

README.md

File metadata and controls

44 lines (38 loc) · 972 Bytes

How to build

git clone git@github.com:sengulhamza/ticcxx_cmake.git
cd ticcxx_cmake
./build.sh

Build script commands:

./build.sh -f 

Deletes old build directory and builds project from start.

./build.sh -b 

Sends make command to build folder.

./build.sh -fb 

-f -b commands runs together. Shortly, clean build.

ARM Toolchain

https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads

Source hierarchy

  • src is the main application source directory.
  • src/app for application related code files.
  • src/drv for driver code files. ie: i2c_master, uart, rf

Branch workflow

  • Before create a new branch follow the below flow
git checkout master
git pull
git checkout -b feature/branch-name
  • If your commit fixing a bug branch name will be like bugfix/branch-name
  • Before push your commit, run code-format.sh and write a clear and concise explanation with -m option