Marlin 2.0 for Flying Bear 4S/5
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.

11 lines
216 B

4 years ago
#ifndef SHARED_MEM_H
#define SHARED_MEM_H
#include <stdio.h>
3 years ago
#define SHARED_MEM_1KB_COUNT 6
4 years ago
#define SHARED_MEM_SIZE SHARED_MEM_1KB_COUNT*1024
extern volatile uint8_t shared_mem[SHARED_MEM_SIZE];
#endif