Skip to content

Commit

Permalink
updated version number to 0.3.0 - new feature added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis A. Plana committed Oct 22, 2023
1 parent b128a6c commit 80fa0d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions doc/spif_config/spif_config.tex
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
% --------------------------------------------------------------------------
% define useful variables
% --------------------------------------------------------------------------
\def\myversion{Version 0.2.0}
\def\mydate{23 March 2023}
\def\myversion{Version 0.3.0}
\def\mydate{22 October 2023}

\def\bcw{5mm}
\def\ncw{45mm}
Expand Down Expand Up @@ -462,6 +462,7 @@ \subsection{Event Output Control}
& $\bullet$ a frame is triggered whenever the length is reached or a periodic tick is hit. \\%
& $\bullet$ SpiNNaker output is off by default. \\%
& $\bullet$ a peripheral must send a message to spif (UDP port 3332) to start output. \\%
& $\bullet$ output events are sent to the originating IP/UPD port of the latest command received on UDP port 3332. \\%
& $\bullet$ when output is off all received output packets are dropped. \\%
\hline
\end{tabularx}
Expand Down Expand Up @@ -518,6 +519,7 @@ \subsection*{\itshape Change log:}
\item 0.0.3 - 07/09/2021 - lap - added event filtering information.
\item 0.1.0 - 04/11/2022 - lap - updated event output functionality.
\item 0.2.0 - 22/03/2023 - lap - updated peripheral routing and distiller functionality.
\item 0.3.0 - 22/10/2023 - lap - extended event camera support.
\end{itemize}


Expand Down
2 changes: 1 addition & 1 deletion spif-driver/spif-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ MODULE_DEVICE_TABLE (of, spif_driver_of_match);
// -------------------------------------------------------------------------
// spif constants
// -------------------------------------------------------------------------
#define SPIF_DRV_VERSION "0.2.0"
#define SPIF_DRV_VERSION "0.3.0"
#define SPIF_DRV_NAME "spif"

// driver ioctl unreserved magic number (seq 0xf0 - 0xff)
Expand Down
4 changes: 2 additions & 2 deletions spif_common/src/dvs_on_hssl_top.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
// hardware version
// semantic versioning [MM = major, mm = minor, pp = patch]
//---------------------------------------------------------------
`define SPIF_VER_STR "0.2.0"
`define SPIF_VER_NUM `HW_VER_BITS'h000200 // 24'hMMmmpp
`define SPIF_VER_STR "0.3.0"
`define SPIF_VER_NUM `HW_VER_BITS'h000300 // 24'hMMmmpp
//---------------------------------------------------------------
//---------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion spiffer/spiffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

// constants
#define SPIFFER_VER_MAJ 0
#define SPIFFER_VER_MIN 2
#define SPIFFER_VER_MIN 3
#define SPIFFER_VER_PAT 0
#define SPIFFER_ERROR -1
#define SPIFFER_OK 0
Expand Down

0 comments on commit 80fa0d9

Please sign in to comment.