This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Source this file. | |
# | |
D=$(while [[ $PWD != / && ! -x waf ]]; do cd .. ; done; echo $PWD) | |
WAF_PATH="$D/waf" | |
waf() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This is the cpp file for your board GPIO | |
*/ | |
const unsigned LinuxGPIO_Sysfs::pin_table[] = { | |
[MYBOARD_GPIO_A] = 560, | |
[MYBOARD_GPIO_B] = 569, | |
[MYBOARD_GPIO_C] = 450, | |
[MYBOARD_GPIO_D] = 327, | |
[MYBOARD_GPIO_E] = 328 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A { | |
public: | |
virtual void foo(int a, int b = 1) = 0; | |
}; | |
class B : public A { | |
public: | |
void foo(int a, int) { | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task 0 - rc_loop: | |
example.log | |
Time limit 130.000 | |
Average 4.276 | |
Variance 30.165 | |
Standard Deviation 5.492 | |
Number of samples 6272.000 | |
Number of overruns 0.000 | |
Overrun rate 0.000 |