diff --git a/examples/c++/curieimu.cxx b/examples/c++/curieimu.cxx index c9ff3e6d..a9222d48 100644 --- a/examples/c++/curieimu.cxx +++ b/examples/c++/curieimu.cxx @@ -76,6 +76,7 @@ main(int argc, char **argv) printf("motion is: %d, %d, %d, %d, %d, %d\n", m, n, o, p, q, r); delete sensor; + //! [Interesting] return 0; } diff --git a/examples/c++/light-controller.cxx b/examples/c++/light-controller.cxx index 2eec0cca..8907074d 100644 --- a/examples/c++/light-controller.cxx +++ b/examples/c++/light-controller.cxx @@ -95,4 +95,4 @@ int main( int argc, char **argv ) return status; } - +//! [Interesting] diff --git a/examples/c++/nlgpio16.cxx b/examples/c++/nlgpio16.cxx index ecd9f024..5e19ce68 100644 --- a/examples/c++/nlgpio16.cxx +++ b/examples/c++/nlgpio16.cxx @@ -31,6 +31,7 @@ using namespace std; using namespace upm; +//! [Interesting] int main(int argc, char **argv) { // Instantiate a NLGPIO16 Module on the default UART (/dev/ttyACM0) diff --git a/examples/c++/ozw-aeotecdsb09104.cxx b/examples/c++/ozw-aeotecdsb09104.cxx index be6b37a4..f0939342 100644 --- a/examples/c++/ozw-aeotecdsb09104.cxx +++ b/examples/c++/ozw-aeotecdsb09104.cxx @@ -119,5 +119,6 @@ int main(int argc, char **argv) delete sensor; + //! [Interesting] return 0; } diff --git a/examples/c++/ozw-aeotecdw2e.cxx b/examples/c++/ozw-aeotecdw2e.cxx index ffd7cf7c..671dd905 100644 --- a/examples/c++/ozw-aeotecdw2e.cxx +++ b/examples/c++/ozw-aeotecdw2e.cxx @@ -104,6 +104,7 @@ int main(int argc, char **argv) cout << "Exiting..." << endl; delete sensor; +//! [Interesting] return 0; } diff --git a/examples/c++/ozw-aeotecsdg2.cxx b/examples/c++/ozw-aeotecsdg2.cxx index 5ddaa266..9f64f8bb 100644 --- a/examples/c++/ozw-aeotecsdg2.cxx +++ b/examples/c++/ozw-aeotecsdg2.cxx @@ -122,6 +122,7 @@ int main(int argc, char **argv) cout << "Exiting..." << endl; delete sensor; +//! [Interesting] return 0; } diff --git a/examples/c++/ozw-aeotecss6.cxx b/examples/c++/ozw-aeotecss6.cxx index ff4a3301..6e889c4b 100644 --- a/examples/c++/ozw-aeotecss6.cxx +++ b/examples/c++/ozw-aeotecss6.cxx @@ -112,6 +112,7 @@ int main(int argc, char **argv) cout << "Exiting..." << endl; delete sensor; +//! [Interesting] return 0; } diff --git a/examples/c++/ozw-tzemt400.cxx b/examples/c++/ozw-tzemt400.cxx index cc75078e..fb58d09d 100644 --- a/examples/c++/ozw-tzemt400.cxx +++ b/examples/c++/ozw-tzemt400.cxx @@ -110,5 +110,6 @@ int main(int argc, char **argv) delete sensor; +//! [Interesting] return 0; } diff --git a/examples/c++/si7005.cxx b/examples/c++/si7005.cxx index db6ad289..ff51f3e6 100644 --- a/examples/c++/si7005.cxx +++ b/examples/c++/si7005.cxx @@ -30,6 +30,7 @@ #define EDISON_GPIO_SI7005_CS 20 +//! [Interesting] int main () { try { @@ -47,5 +48,4 @@ int main () } return 0; } - //! [Interesting]