aboutsummaryrefslogtreecommitdiff
path: root/fmdriver/fmdriver_common.h
blob: cd804b816f1a171963c57f3aa60074f8d0907d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MYON_FMDRIVER_COMMON_H_INCLUDED
#define MYON_FMDRIVER_COMMON_H_INCLUDED

static inline uint16_t read16le(const uint8_t *ptr) {
  return (unsigned)ptr[0] | (((unsigned)ptr[1])<<8);
}

static inline int16_t u8s16(uint8_t v) {
  return (v & 0x80) ? ((int16_t)v)-0x100 : v;
}

static inline int16_t u16s16(uint16_t v) {
  return (v & 0x8000) ? ((int32_t)v)-0x10000 : v;
}

#include <stdio.h>
#define FMDRIVER_DEBUG(...) fprintf(stderr, __VA_ARGS__)

#endif // MYON_FMDRIVER_COMMON_H_INCLUDED