Skip to content

Commit

Permalink
2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum-leaps committed Aug 3, 2024
1 parent 7cbf14b commit 8ed4dab
Show file tree
Hide file tree
Showing 22 changed files with 10,400 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lesson-06/simulator-iar/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ int main(void) {
c = a & b; // AND
c = a ^ b; // XOR
c = ~b; // NOT
c = a << 1; // right-shift
c = a << 1; // lef-shift
c = a << 2;
c = b >> 1; // left-shift
c = b >> 1; // right-shift
c = b >> 3;

int x = 1024;
Expand Down
4 changes: 2 additions & 2 deletions lesson-06/stm32c031-keil/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ int main(void) {
c = a & b; // AND
c = a ^ b; // XOR
c = ~b; // NOT
c = a << 1; // right-shift
c = a << 1; // lef-shift
c = a << 2;
c = b >> 1; // left-shift
c = b >> 1; // right-shift
c = b >> 3;
int x = 1024;
Expand Down
4 changes: 2 additions & 2 deletions lesson-06/tm4c123-iar/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ int main(void) {
c = a & b; // AND
c = a ^ b; // XOR
c = ~b; // NOT
c = a << 1; // right-shift
c = a << 1; // lef-shift
c = a << 2;
c = b >> 1; // left-shift
c = b >> 1; // right-shift
c = b >> 3;
int x = 1024;
Expand Down
4 changes: 2 additions & 2 deletions lesson-06/tm4c123-keil/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ int main(void) {
c = a & b; // AND
c = a ^ b; // XOR
c = ~b; // NOT
c = a << 1; // right-shift
c = a << 1; // lef-shift
c = a << 2;
c = b >> 1; // left-shift
c = b >> 1; // right-shift
c = b >> 3;
int x = 1024;
Expand Down
3 changes: 3 additions & 0 deletions lesson-27/nucleo-c031c6/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This directory contains embedded code for the STM32 NUCLEO-C031C6
board. This code is then used to build ET tests for this board.
See also the examples/ directory, make_nucleo-l152re makefiles.
Loading

0 comments on commit 8ed4dab

Please sign in to comment.