cppdemo.cc 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2005 by Oliver Schulz (MPI)
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the copyright holders nor the names of
  16. * contributors may be used to endorse or promote products derived
  17. * from this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  23. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  24. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  27. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. *
  32. * For additional information see http://www.ethernut.de/
  33. */
  34. /*!
  35. * $Id: cppdemo.cc 5345 2013-09-23 12:35:04Z haraldkipp $
  36. */
  37. /*!
  38. * \example cppdemo/cppdemo.cc
  39. *
  40. * This trivial sample demonstrates the usage of Nut/OS with C++.
  41. *
  42. * You should carefully think about using C++ with tiny embedded systems.
  43. * This sample just proofs, that it basically works.
  44. */
  45. #include <cpp/nutcpp.h>
  46. extern "C" {
  47. #include <dev/board.h>
  48. #include <sys/version.h>
  49. #include <inttypes.h>
  50. #include <io.h>
  51. #include <stdio.h>
  52. }
  53. template<class tp_type> class TemplateCounter
  54. {
  55. protected:
  56. tp_type m_value;
  57. public:
  58. tp_type value() const { return m_value; }
  59. void inc() { m_value++; }
  60. void dec() { m_value--; }
  61. void set(const tp_type &newValue) { m_value = newValue; }
  62. };
  63. class Counter: public TemplateCounter<uint8_t>
  64. {
  65. public:
  66. void print(FILE *stream);
  67. Counter(uint8_t initValue=10);
  68. };
  69. void Counter::print(FILE* stream)
  70. {
  71. fprintf(stream, "\nCounter value = %i\n", value());
  72. }
  73. Counter::Counter(uint8_t initValue)
  74. {
  75. m_value = initValue;
  76. }
  77. int main(void) {
  78. u_long baud = 115200;
  79. NutRegisterDevice(&DEV_CONSOLE, 0, 0);
  80. FILE *stream = fopen(DEV_CONSOLE.dev_name, "r+");
  81. _ioctl(_fileno(stream), UART_SETSPEED, &baud);
  82. fprintf(stream, "\n\nC++ Demo on Nut/OS %s ready.\n", NutVersionString());
  83. Counter counter;
  84. counter.print(stream);
  85. for (;;) {
  86. char c;
  87. fread(&c, sizeof(c), 1, stream);
  88. switch (c) {
  89. case '+':
  90. counter.inc();
  91. counter.print(stream);
  92. break;
  93. case '-':
  94. counter.dec();
  95. counter.print(stream);
  96. break;
  97. case 'r':
  98. counter.set(0);
  99. counter.print(stream);
  100. break;
  101. default:
  102. fprintf(stream, "Unknown command.\n");
  103. }
  104. }
  105. return 0;
  106. }