選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

113 行
3.1KB

  1. /*
  2. wiring.h - Partial implementation of the Wiring API for the ATmega8.
  3. Part of Arduino - http://www.arduino.cc/
  4. Copyright (c) 2005-2006 David A. Mellis
  5. This library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General
  14. Public License along with this library; if not, write to the
  15. Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  16. Boston, MA 02111-1307 USA
  17. $Id: wiring.h 387 2008-03-08 21:30:00Z mellis $
  18. */
  19. #ifndef Wiring_h
  20. #define Wiring_h
  21. #include <avr/io.h>
  22. #include <stdlib.h>
  23. #include <math.h>
  24. #include "binary.h"
  25. #include "core_id.h"
  26. #include "core_pins.h"
  27. #ifdef ID
  28. #undef ID // ID bit in USBSTA conflicts with user's code
  29. #endif
  30. #ifdef __cplusplus
  31. extern "C"{
  32. #endif
  33. #define true 1
  34. #define false 0
  35. #define PI 3.1415926535897932384626433832795
  36. #define HALF_PI 1.5707963267948966192313216916398
  37. #define TWO_PI 6.283185307179586476925286766559
  38. #define DEG_TO_RAD 0.017453292519943295769236907684886
  39. #define RAD_TO_DEG 57.295779513082320876798154814105
  40. #define SERIAL 0
  41. #define DISPLAY 1
  42. #define CHANGE 1
  43. #define FALLING 2
  44. #define RISING 3
  45. #define INTERNAL 3
  46. #define INTERNAL2V56 3
  47. #define DEFAULT 1
  48. #define EXTERNAL 0
  49. // undefine stdlib's abs if encountered
  50. #ifdef abs
  51. #undef abs
  52. #endif
  53. #define min(a,b) ((a)<(b)?(a):(b))
  54. #define max(a,b) ((a)>(b)?(a):(b))
  55. #define abs(x) ((x)>0?(x):-(x))
  56. #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
  57. #define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))
  58. #define radians(deg) ((deg)*DEG_TO_RAD)
  59. #define degrees(rad) ((rad)*RAD_TO_DEG)
  60. #define sq(x) ((x)*(x))
  61. #define interrupts() sei()
  62. #define noInterrupts() cli()
  63. #define clockCyclesPerMicrosecond() ( F_CPU / 1000000L )
  64. #define clockCyclesToMicroseconds(a) ( (a) / clockCyclesPerMicrosecond() )
  65. #define microsecondsToClockCycles(a) ( (a) * clockCyclesPerMicrosecond() )
  66. #define lowByte(w) ((uint8_t)((w) & 0xFF))
  67. #define highByte(w) ((uint8_t)((w) >> 8))
  68. #define bitRead(value, bit) (((value) >> (bit)) & 0x01)
  69. #define bitSet(value, bit) ((value) |= (1UL << (bit)))
  70. #define bitClear(value, bit) ((value) &= ~(1UL << (bit)))
  71. #define bitWrite(value, bit, bitvalue) ((bitvalue) ? bitSet((value), (bit)) : bitClear((value), (bit)))
  72. typedef unsigned int word;
  73. #define bit(b) (1UL << (b))
  74. typedef uint8_t boolean;
  75. typedef uint8_t byte;
  76. unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout);
  77. void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, byte val);
  78. void attachInterrupt(uint8_t, void (*)(void), uint8_t mode);
  79. void detachInterrupt(uint8_t);
  80. void setup(void);
  81. void loop(void);
  82. #ifdef __cplusplus
  83. } // extern "C"
  84. #endif
  85. #endif