Simple single-color 8x8x8 LED Cube with AVRs
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.

cube.c 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * cube.c
  3. *
  4. * Copyright 2011 Thomas Buck <xythobuz@me.com>
  5. * Copyright 2011 Max Nuding <max.nuding@gmail.com>
  6. * Copyright 2011 Felix Bäder <baeder.felix@gmail.com>
  7. *
  8. * This file is part of LED-Cube.
  9. *
  10. * LED-Cube is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * LED-Cube is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. #include <avr/io.h>
  24. #include <avr/interrupt.h>
  25. #include <stdlib.h>
  26. #include "cube.h"
  27. #ifndef F_CPU
  28. #define F_CPU 16000000L
  29. #endif
  30. volatile uint8_t _isrCounter = 0;
  31. volatile uint8_t **imgBuffer = NULL; // imgBuffer[8][8]
  32. volatile uint8_t imgFlag = 0;
  33. // Wir zählen 21 mal bis 3968
  34. ISR(TIMER1_COMPA_vect) {
  35. if (_isrCounter < 20) {
  36. _isrCounter++;
  37. } else {
  38. _isrCounter = 0;
  39. isrCall();
  40. }
  41. }
  42. inline void setFet(uint8_t data) {
  43. data &= ~((1 << 1) | 1);
  44. PORTD = data;
  45. data &= ~(3);
  46. data = data << 3;
  47. PORTB |= data;
  48. }
  49. inline void selectLatch(uint8_t latchNr) {
  50. PORTC = 0;
  51. if (latchNr < 8) {
  52. PORTC = 1 << latchNr;
  53. }
  54. }
  55. inline void setLatch(uint8_t latchNr, uint8_t data) {
  56. setFet(0); // All LEDs off
  57. selectLatch(latchNr); // Activate current latch
  58. PORTA = data; // Put latch data
  59. delay_ns(LATCHDELAY); // Wait for latch
  60. selectLatch(8); // Deactivate all latches
  61. setFet(1 << latchNr); // Activate current plane
  62. }
  63. inline void isrCall(void) {
  64. static uint8_t layer = 0;
  65. uint8_t latchCtr = 0;
  66. for (; latchCtr < 8; latchCtr++) {
  67. setLatch(latchCtr, imgBuffer[layer][latchCtr]); // Put out all the data
  68. }
  69. // Select next layer
  70. if (layer < 7) {
  71. layer++;
  72. } else {
  73. layer = 0;
  74. }
  75. }
  76. inline void delay_ns(int16_t ns) {
  77. // minimum 63 nanoseconds (= 1 tick)
  78. for (ns > 0; ns -= 63)
  79. asm volatile("nop"::);
  80. }