My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wiring_private.h 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. wiring_private.h - Internal header file.
  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 239 2007-01-12 17:58:39Z mellis $
  18. */
  19. #ifndef WiringPrivate_h
  20. #define WiringPrivate_h
  21. #include <math.h>
  22. #include <avr/io.h>
  23. #include <avr/interrupt.h>
  24. #include <util/delay.h>
  25. #include <stdio.h>
  26. #include <stdarg.h>
  27. #include "wiring.h"
  28. #ifdef __cplusplus
  29. extern "C"{
  30. #endif
  31. #ifndef cbi
  32. #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
  33. #endif
  34. #ifndef sbi
  35. #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
  36. #endif
  37. #define EXTERNAL_INT_0 0
  38. #define EXTERNAL_INT_1 1
  39. #define EXTERNAL_INT_2 2
  40. #define EXTERNAL_INT_3 3
  41. #define EXTERNAL_INT_4 4
  42. #define EXTERNAL_INT_5 5
  43. #define EXTERNAL_INT_6 6
  44. #define EXTERNAL_INT_7 7
  45. #if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
  46. #define EXTERNAL_NUM_INTERRUPTS 8
  47. #else
  48. #define EXTERNAL_NUM_INTERRUPTS 2
  49. #endif
  50. typedef void (*voidFuncPtr)(void);
  51. #ifdef __cplusplus
  52. } // extern "C"
  53. #endif
  54. #endif