- Jun 10, 2018
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Since it has nothing to do with pins.
-
- Jun 03, 2018
-
-
Sebastian Kuzminsky authored
This makes it easier to bootstrap support for new gtags.
-
Sebastian Kuzminsky authored
These functions were never called, and some of the declarations were duplicated.
-
Sebastian Kuzminsky authored
-
- Apr 23, 2018
-
-
Sebastian Kuzminsky authored
eth_scan_one_addr() now returns an int indicating pass (it found a known board at the specified address) or fail (no known board found at that address). eth_boards_scan() propagates this pass/fail signal up to anyio_find_dev(), so it can report eth-board failures just like it does for pci, epp, etc. This commit also fixes a harmless(?) bug where unknown ethernet boards would cause mesaflash to miscount the number of discovered boards.
-
- Mar 04, 2018
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
This fixes a segfault when listing the pins on the 7i96.
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
The 7i96 is unique in that there isn't a 1:1 mapping between connectors and ioports. TB1 and TB2 are both part of ioport 1. This fudges the connector list to match.
-
- Feb 19, 2018
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Whitespace changes only, no content changes.
-
- Jun 28, 2017
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Conflicts: debian/changelog eeprom_local.c pci_boards.c
-
Sebastian Kuzminsky authored
-
- Jun 26, 2017
-
-
Sebastian Kuzminsky authored
Bump the version of the package from 3.2.0 to 3.2.0-1.
-
Sebastian Kuzminsky authored
Also rename the variable "access" to "board_access" to avoid collission with the access() function declared by unistd.h .
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Also rename the variable "access" to "board_access", to avoid collission with the access() function that unistd.h declares.
-
Sebastian Kuzminsky authored
ppoll() is a _GNU_SOURCE feature, and since mesaflash is GPL 2+ we can enable _GNU_SOURCE here.
-
Sebastian Kuzminsky authored
This declares close(), which avoids an 'implicit declaration' warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This provides the declaration of isprint(), which is needed to avoid an 'implicit declaration' warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
mesaflash uses the standard return value -1 for indicating errors, so use it here too.
-
Sebastian Kuzminsky authored
This provides the declaration of eeprom_init(), avoiding an "implicit declaration" warning on GCC 6.3 on Debian Stretch.
-
Sebastian Kuzminsky authored
This C file calls functions in libpci, so make sure we declare them. This fixes the situation on Linux, no idea about Windows.
-
Sebastian Kuzminsky authored
These functions are used by encoder_module, so we need to declare them to avoid an "implicit declaration" warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This avoids an "implicit declaration" warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This provides the declaration of gettimeofday(), squelching a compile warning on GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This defines some serial_boards_*() functions that anyio.c uses.
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
GCC 6.3 in Debian Strech uses C99 inline semantics, so it complains: In file included from eeprom_local.c:31:0: eeprom_local.c: At top level: epp_boards.h:37:13: warning: inline function ‘epp_write8’ declared but never defined inline void epp_write8(board_t *board, u8 data); ^~~~~~~~~~ The function declaration needs to be non-inline, and the function definition can be inline.
-
- Apr 28, 2017
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Some debian changelog parsing tools don't like it if there isn't a single changelog entry. This commit adds a placeholder changelog entry to placate those tools.
-
- Oct 23, 2016