123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #ifndef CHIPSET_HEADER
- #define CHIPSET_HEADER
- #include <stdint.h>
- #define PLCHIPSET "PLCDEVICE"
- #define CHIPSET_UNKNOWN 0x00
- #define CHIPSET_INT6000A1 0x01
- #define CHIPSET_INT6300A0 0x02
- #define CHIPSET_INT6400A0 0x03
- #define CHIPSET_AR7400A0 0x04
- #define CHIPSET_AR6405A0 0x05
- #define CHIPSET_PANTHER_LYNX 0x06
- #define CHIPSET_QCA7450A0 0x07
- #define CHIPSET_QCA7451A0 0x08
- #define CHIPSET_QCA7452A0 0x09
- #define CHIPSET_QCA7420A0 0x20
- #define CHIPSET_QCA6410A0 0x21
- #define CHIPSET_QCA6411A0 0x21
- #define CHIPSET_QCA7000A0 0x22
- #define CHIPSET_QCA7000I 0x22
- #define CHIPSET_QCA7005A0 0x22
- #define CHIPSET_QCA7500A0 0x30
- #define CHIPSET_INT6000 CHIPSET_INT6000A1
- #define CHIPSET_INT6300 CHIPSET_INT6300A0
- #define CHIPSET_INT6400 CHIPSET_INT6400A0
- #define CHIPSET_AR7400 CHIPSET_AR7400A0
- #define CHIPSET_INT6405 CHIPSET_AR6405A0
- #define CHIPSET_AR6405 CHIPSET_AR6405A0
- #define CHIPSET_QCA7450 CHIPSET_QCA7450A0
- #define CHIPSET_QCA7451 CHIPSET_QCA7451A0
- #define CHIPSET_QCA7452 CHIPSET_QCA7452A0
- #define CHIPSET_QCA7420 CHIPSET_QCA7420A0
- #define CHIPSET_QCA6410 CHIPSET_QCA6410A0
- #define CHIPSET_QCA6411 CHIPSET_QCA6411A0
- #define CHIPSET_QCA7000 CHIPSET_QCA7000A0
- #define CHIPSET_QCA7005 CHIPSET_QCA7005A0
- #define CHIPSET_QCA7500 CHIPSET_QCA7500A0
- char const * chipsetname (uint8_t chipset);
- void chipset (void const * memory);
- #endif
|