Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

72 lines
2.6KB

  1. /* Arduino SdFat Library
  2. * Copyright (C) 2008 by William Greiman
  3. *
  4. * This file is part of the Arduino SdFat Library
  5. *
  6. * This Library is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This Library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. * You should have received a copy of the GNU General Public License
  16. * along with the Arduino SdFat Library. If not, see
  17. * <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef SdFatUtil_h
  20. #define SdFatUtil_h
  21. /**
  22. * \file
  23. * Useful utility functions.
  24. */
  25. #include <Arduino.h>
  26. #include <avr/pgmspace.h>
  27. /** Store and print a string in flash memory.*/
  28. #define PgmPrint(x) SerialPrint_P(PSTR(x))
  29. /** Store and print a string in flash memory followed by a CR/LF.*/
  30. #define PgmPrintln(x) SerialPrintln_P(PSTR(x))
  31. /** Defined so doxygen works for function definitions. */
  32. #define NOINLINE __attribute__((noinline,unused))
  33. #define UNUSEDOK __attribute__((unused))
  34. //------------------------------------------------------------------------------
  35. /** Return the number of bytes currently free in RAM. */
  36. static UNUSEDOK int FreeRam(void) {
  37. extern int __bss_end;
  38. extern int* __brkval;
  39. int free_memory;
  40. if (reinterpret_cast<int>(__brkval) == 0) {
  41. // if no heap use from end of bss section
  42. free_memory = reinterpret_cast<int>(&free_memory)
  43. - reinterpret_cast<int>(&__bss_end);
  44. } else {
  45. // use from top of stack to heap
  46. free_memory = reinterpret_cast<int>(&free_memory)
  47. - reinterpret_cast<int>(__brkval);
  48. }
  49. return free_memory;
  50. }
  51. //------------------------------------------------------------------------------
  52. /**
  53. * %Print a string in flash memory to the serial port.
  54. *
  55. * \param[in] str Pointer to string stored in flash memory.
  56. */
  57. static NOINLINE void SerialPrint_P(PGM_P str) {
  58. for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.write(c);
  59. }
  60. //------------------------------------------------------------------------------
  61. /**
  62. * %Print a string in flash memory followed by a CR/LF.
  63. *
  64. * \param[in] str Pointer to string stored in flash memory.
  65. */
  66. static NOINLINE void SerialPrintln_P(PGM_P str) {
  67. SerialPrint_P(str);
  68. Serial.println();
  69. }
  70. #endif // #define SdFatUtil_h