123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
-
-
- #if defined(_VMICRO_INTELLISENSE)
-
- #ifndef _VSARDUINO_H_
- #define _VSARDUINO_H_
- #define __HARDWARE_imxrt1062__
- #define __HARDWARE_IMXRT1062__
- #define _VMDEBUG 1
- #define __IMXRT1062__
- #define TEENSYDUINO 148
- #define ARDUINO 108010
- #define F_CPU 600000000
- #define USB_SERIAL
- #define LAYOUT_US_ENGLISH
- #define __cplusplus 201103L
- #undef __cplusplus
- #define __cplusplus 201103L
-
-
- #define __arm__
- #define __ARM__
- #define __attribute__(x)
- typedef void *__builtin_va_list;
- #define __extension__
- #define __ATTR_PURE__
- #define __ATTR_CONST__
- #define __inline__
- #define __asm__(x)
- #define __volatile__
- #define NEW_H
- #undef _WIN32
- #define __STDC__
-
-
- #define __ARM_ARCH_7EM__
-
- extern int at_quick_exit(void (*f)(void));
- int at_quick_exit(void (*f)(void)) {
- }
- extern int quick_exit(void (*f)(void));
- int quick_exit(void (*f)(void)) {
- }
-
-
-
- #define __INT64_TYPE__ 8
- #define __INTPTR_TYPE__ 4
- #define __INT32_TYPE__ 4
-
- typedef long intptr_t;
- typedef long __intptr_t;
- typedef unsigned long __uintptr_t;
- typedef long __int32_t;
- typedef unsigned long __uint32_t;
- typedef unsigned short __uint16_t;
- typedef short __int16_t;
- typedef unsigned short __uint8_t;
- typedef short __int8_t;
- typedef unsigned long __uint64_t;
- typedef double __int64_t;
- typedef unsigned long uint64_t;
- typedef double int64_t;
- typedef unsigned short uint8_t;
- typedef short int8_t;
-
- typedef unsigned int uint16_t;
- typedef short int16_t;
- typedef long __int32_t;
- typedef unsigned long __uint32_t;
-
- #define at_quick_exit(x)
-
- #include "arduino.h"
- #define abs(x) ((x)>0?(x):-(x))
- #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
- #define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))
- #define radians(deg) ((deg)*DEG_TO_RAD)
- #define degrees(rad) ((rad)*RAD_TO_DEG)
- #define sq(x) ((x)*(x))
-
- #define __asm__
-
- #define __disable_irq() __asm__ volatile("");
- #define __enable_irq() __asm__ volatile("");
-
-
- #include "Teensy4.1_Datalogger new.ino"
- #endif
- #endif
|