训练营PLSR题目
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.
 
 
 
 
 
 

9 line
206 B

  1. #ifndef __BITSET_H__
  2. #define __BITSET_H__
  3. #include "stdint.h"
  4. void Set8_16(uint16_t *Dat , uint8_t *BufferH, uint8_t *BufferL);
  5. void Set16_32(uint32_t *Dat , uint16_t *BufferH, uint16_t *BufferL);
  6. #endif