Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_PLD_RAW_BIN_H
#include <stddef.h>
#include <stdint.h>
raw_bit_file
cpld_read_raw_bit_file(struct raw_bit_file *, const char *);
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/pld/raw_bit.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2022 by Daniel Anselmi * * danselmi@gmx.ch * ***************************************************************************//* ... */ #ifndef OPENOCD_PLD_RAW_BIN_H #define OPENOCD_PLD_RAW_BIN_H #include <stddef.h> #include <stdint.h> struct raw_bit_file { size_t length; uint8_t *data; ...}; int cpld_read_raw_bit_file(struct raw_bit_file *bit_file, const char *filename); /* ... */ #endif /* OPENOCD_PLD_RAW_BIN_H */