CoDrone DIY
  • ⚪소개하기
    • 펌웨어 업데이트 방법
      • Raspberry pi
      • Linux
      • Mac
      • Windows
      • Windows(.NET)
    • 다운로드용 자료 모음
  • 코드론 파이썬 라이브러리
    • 🔶파이썬
      • drone class
      • ping
      • information
      • pairing
      • control
      • sensor
      • buzzer
      • vibrator
      • light
      • display
      • input
      • error
    • 🔷프로토콜
      • Typedef
      • DataType
      • Definitions
      • Structs
      • Structs light
      • Structs display
      • Structs card
  • Friend Site
    • 🤍Buy CoDrone DIY
    • 💙ROBOLINK
Powered by GitBook
On this page
  1. 코드론 파이썬 라이브러리
  2. 프로토콜

Typedef

변수 형식을 소개합니다.

데이터 송수신 시에는 지정된 열거형이 있는 경우라도 데이터 길이를 명확하게 표시하고자 아래와 같은 변수형을 사용하고 있습니다.

typedef int64_t   s64;
typedef int32_t   s32;
typedef int16_t   s16;
typedef int8_t    s8;

typedef uint64_t  u64;
typedef uint32_t  u32;
typedef uint16_t  u16;
typedef uint8_t   u8;

typedef float     f32;
typedef double    f64;

Previous프로토콜NextDataType

Last updated 2 years ago

🔷