123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
-
- #include <stdint.h>
- #include <avr/io.h>
- #include <stdlib.h>
- #include "mem.h"
- #include "memLayer.h"
- #include "serial.h"
-
-
-
-
-
-
-
-
- uint8_t *getFrame(uint16_t frameNumber) {
- return memGetBytes(32 + (65 * frameNumber), 65);
- }
-
-
- void setFrame(uint16_t frameNumber, uint8_t *frameData) {
- memWriteBytes(32 + (65 * frameNumber), frameData, 65);
- }
-
- void clearMem() {
- uint32_t i;
- for (i = 0; i < MemLength; i++) {
- memWriteByte(i, 0);
- }
- }
-
- uint16_t getAnimationCount() {
- uint8_t lsb = memGetByte(0);
- uint8_t msb = memGetByte(1);
- uint16_t animationCount = (uint16_t)lsb;
- animationCount |= (((uint16_t)(msb)) << 8);
- if (animationCount <= 2016) {
- return animationCount;
- } else {
- return 2016;
- }
- }
-
- void setAnimationCount(uint16_t c) {
- uint8_t lsb = (uint8_t)(c & 0x00FF);
- uint8_t msb = (uint8_t)((c & 0xFF00) >> 8);
- memWriteByte(0, lsb);
- memWriteByte(1, msb);
- }
-
- void setGeneralPurposeByte(uint8_t address, uint8_t data) {
- if (address < 30) {
- memWriteByte(address + 2, data);
- }
- }
-
- uint8_t getGeneralPurposeByte(uint8_t address) {
- if (address < 30) {
- return memGetByte(address + 2);
- } else {
- return 0;
- }
- }
|