Simple single-color 8x8x8 LED Cube with AVRs
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

buffhelp.c 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * buffhelp.h
  3. *
  4. * Copyright 2012 Thomas Buck <xythobuz@me.com>
  5. * Copyright 2012 Max Nuding <max.nuding@gmail.com>
  6. *
  7. * This file is part of LED-Cube.
  8. *
  9. * LED-Cube is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * LED-Cube is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #include <avr/io.h>
  23. #include <stdint.h>
  24. #include <stdlib.h>
  25. #include <serial.h>
  26. #include <strings.h>
  27. void buffClearAllPixels(uint8_t *buffer) {
  28. uint8_t i;
  29. for(i = 0; i < 64; i++) {
  30. buffer[i] = 0;
  31. }
  32. }
  33. uint8_t *buffNew(void) {
  34. uint8_t *tmp = (uint8_t *)malloc(65);
  35. if (tmp == NULL) {
  36. serialWriteString(getString(24)); // Display warning, don't care for CubeControl
  37. while(1); // Ran out of heap => Watchdog Reset
  38. }
  39. buffClearAllPixels(tmp);
  40. tmp[64] = 1;
  41. return tmp;
  42. }
  43. void buffSetPixel(uint8_t *buffer, uint8_t x, uint8_t y, uint8_t z) {
  44. buffer[(8 * (7 - z)) + (7 - y)] |= (1 << x);
  45. }
  46. void buffClearPixel(uint8_t *buffer, uint8_t x, uint8_t y, uint8_t z) {
  47. buffer[(8 * (7 - z)) + (7 - y)] &= ~(1 << x);
  48. }
  49. void buffFree(uint8_t *buffer) {
  50. free(buffer);
  51. }