mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-31 10:16:11 +02:00
Update cmake according to trabucayre request https://github.com/trabucayre/openFPGALoader/pull/17
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#ifndef CONFIGBITSTREAMPARSER_H
|
||||
#define CONFIGBITSTREAMPARSER_H
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <stdint.h>
|
||||
|
||||
class ConfigBitstreamParser {
|
||||
public:
|
||||
ConfigBitstreamParser(std::string filename, int mode = ASCII_MODE,
|
||||
bool verbose = false);
|
||||
virtual ~ConfigBitstreamParser();
|
||||
virtual int parse() = 0;
|
||||
uint8_t *getData() {return (uint8_t*)_bit_data.c_str();}
|
||||
int getLength() {return _bit_length;}
|
||||
|
||||
enum {
|
||||
ASCII_MODE = 0,
|
||||
BIN_MODE = std::ifstream::binary
|
||||
};
|
||||
|
||||
static uint8_t reverseByte(uint8_t src);
|
||||
|
||||
protected:
|
||||
std::string _filename;
|
||||
int _bit_length;
|
||||
int _file_size;
|
||||
bool _verbose;
|
||||
std::ifstream _fd;
|
||||
std::string _bit_data;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user