训练营PLSR题目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
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