lab209b3 / zephyr_tutorial_vn

1 stars 0 forks source link

Document about interrupt #8

Closed baobuibk closed 3 months ago

baobuibk commented 4 months ago

-Introduction about interrupt (same as example) -Example about external interrupt, explain -Example about timer interrupt, explain -Example about uart interrupt, explain -Example -Exercise

baobuibk commented 3 months ago

Step to follow https://stackoverflow.com/questions/47029731/git-get-latest-changes-before-pushing-a-branch

  1. Go to master branch with: git checkout master
  2. Update your local master with: git pull origin master
  3. Resolve conflicts (if applicable)
  4. Go back to features with: git checkout features
  5. Merge master branch over features with: git merge master
  6. Rebuild the code to make sure all is OK
  7. Push changes with: git push origin features

Now, you have to create a new pull request from features to master. Done!