<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Activity for Hex2bin</title><link>https://sourceforge.net/p/hex2bin/activity/</link><description>Recent activity for Hex2bin</description><language>en</language><lastBuildDate>Sun, 01 Mar 2026 23:32:12 -0000</lastBuildDate><item><title>Jacques Pelletier committed [2ca559] on hex2bin</title><link>https://sourceforge.net/p/hex2bin/code/ci/2ca559727ed28feffb4b08ef6e04e73ab5ad346e/</link><description>Minor fixes and cleanup</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 01 Mar 2026 23:32:12 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/code/ci/2ca559727ed28feffb4b08ef6e04e73ab5ad346e/</guid></item><item><title>Jacques Pelletier committed [6d503a] on hex2bin</title><link>https://sourceforge.net/p/hex2bin/code/ci/6d503a83911a18ce7c5bb7b0905b441051242d1c/</link><description>Initial commit</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 01 Mar 2026 23:10:36 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/code/ci/6d503a83911a18ce7c5bb7b0905b441051242d1c/</guid></item><item><title>Frank Leonhardt posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/6276854605/?limit=25#e109</link><description>The newer versions of gcc no longer allows tentative definitions by default (although it's in the 'C' standard). This basically means that when a variable is defined in common.h and a 'C' source it'll put two distinct ones in BSS, which will barf the link editor. If that's not basic enough, you'll get double definition errors when it links. The solution is to add the -lcommon flag to the gcc COMPILER options, which makes it merge tentative definitions like it should in 'C' (but not in 'C++).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frank Leonhardt</dc:creator><pubDate>Wed, 28 Aug 2024 17:43:31 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/6276854605/?limit=25#e109</guid></item><item><title>Jacques Pelletier posted a comment on ticket #27</title><link>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#f2f6</link><description>Le 2023-09-29 à 03 h 36, jonarque a écrit : [bugs:#27] https://sourceforge.net/p/hex2bin/bugs/27/ Infinite loop with "Input file MyFile cannot be opened. Enter new filename: " Status: open Group: v1.0.12 Created: Fri Sep 29, 2023 07:36 AM UTC by jonarque Last Updated: Fri Sep 29, 2023 07:36 AM UTC Owner: nobody On Windows, starting : .\hex2bin.exe MyFile If "MyFile" doesn't exist, it outputs : "Input file MyFile cannot be opened. Enter new filename: " in an infinite loop. Sent from sourceforge.net...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 08 Oct 2023 05:10:35 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#f2f6</guid></item><item><title>Jacques Pelletier modified ticket #27</title><link>https://sourceforge.net/p/hex2bin/bugs/27/</link><description>Infinite loop with "Input file MyFile cannot be opened. Enter new filename: "</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 08 Oct 2023 04:55:30 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/27/</guid></item><item><title>Jacques Pelletier modified a comment on ticket #27</title><link>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#0869</link><description>It's the interactive mode. There is a batch option for use in scripts: .\hex2bin.exe -h MyFile If the file doesn't exist, it exits with an error code of 1.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 08 Oct 2023 04:54:54 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#0869</guid></item><item><title>Jacques Pelletier posted a comment on ticket #27</title><link>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#0869</link><description>It's the interactive mode. There is a batch option for use in script: .\hex2bin.exe -h MyFile If the file doesn't exist, it exits with an error code of 1.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 08 Oct 2023 04:54:38 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/27/?limit=25#0869</guid></item><item><title>jonarque created ticket #27</title><link>https://sourceforge.net/p/hex2bin/bugs/27/</link><description>Infinite loop with "Input file MyFile cannot be opened. Enter new filename: "</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jonarque</dc:creator><pubDate>Fri, 29 Sep 2023 07:36:59 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/27/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #26</title><link>https://sourceforge.net/p/hex2bin/bugs/26/?limit=25#9088</link><description>To get a warning, after this line in hex2bin.c, /* Set the lowest address as base pointer. */ if (Phys_Addr &lt; Lowest_Address) Lowest_Address = Phys_Addr; put this: if (Phys_Addr + Nb_Bytes -1 &gt; 65535) if (Verbose_Flag) fprintf(stderr,"Warning: data record wrap around 64k\n");</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 30 Sep 2021 05:14:01 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/26/?limit=25#9088</guid></item><item><title>Jacques Pelletier posted a comment on ticket #26</title><link>https://sourceforge.net/p/hex2bin/bugs/26/?limit=25#cffb</link><description>Thanks for your post. It's indeed not doing it correctly and srecord does it right according to the Intel Hex spec. I suppose most generators would produce correct Intel Hex without resorting to the wrap around trick. After a quick check, a fix for this may be a bit long to do. If this is a show stopper for programming a specific binary, let me know.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 26 Sep 2021 08:42:46 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/26/?limit=25#cffb</guid></item><item><title>Anonymous created ticket #26</title><link>https://sourceforge.net/p/hex2bin/bugs/26/</link><description>no 64k wrap around for segmented addresses</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 07 Sep 2021 14:31:22 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/26/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #25</title><link>https://sourceforge.net/p/hex2bin/bugs/25/?limit=25#ab06</link><description>Thanks! The errors can be corrected by declaring extern all the variables in header files. Didn't check with GCC 10, but it should do the trick. https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common This will be corrected in the next release.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 13 Jun 2020 03:09:43 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/25/?limit=25#ab06</guid></item><item><title>Luigi Baldoni created ticket #25</title><link>https://sourceforge.net/p/hex2bin/bugs/25/</link><description>2.5 link failure with gcc10</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luigi Baldoni</dc:creator><pubDate>Sun, 07 Jun 2020 11:05:21 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/25/</guid></item><item><title>Jacques Pelletier modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#6635</link><description>It would not be possible without splitting the hex file. Padding can't be turned off. Another solution would be that your chip programmer can take hex files directly. Many EEPROM programmers can skip programming a byte if its value is FF. This value is the default value in an erased EEPROM.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Fri, 23 Aug 2019 21:05:22 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#6635</guid></item><item><title>Jacques Pelletier modified a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2017/05/release-25-available/</link><description>Release 2.5 available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Fri, 23 Aug 2019 20:57:51 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2017/05/release-25-available/</guid></item><item><title>Jacques Pelletier posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/da04ef5c07/?limit=25#162a</link><description>if you downloaded Hex2bin-2.5.tar.bz2, the .exe files are in bin/Debug and bin/Release There is no installer for Windows, you can simply copy them manually in a convenient location. There should be no change for Windows 10. I didn't tested it, I don't have Windows 10. I introduced a batch parameter: -b a while ago. Your command may work with the -b added: cmd/c:\foldername\hex2bin -b c:\foldername\temp.hex</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 14 Aug 2019 05:20:22 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/da04ef5c07/?limit=25#162a</guid></item><item><title>bhal tulpule posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/da04ef5c07/?limit=25#8b7e</link><description>I have dowloaded the latest hex2bin file converter. However it did not nclude a .exe file or some other way to install it on my windows PC. So how do i get it installed ? second question, how do i programatically incorporate the hex2bin in my labview program to convert a .hex file into a .bn file in the same folder ? Under windows XP, the complete command looked as follows --&gt; cmd/c:|foldername\hex2bin c:\foldername\temp.hex where "cmd c" was added (per labview) in front of the above "batch command"...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bhal tulpule</dc:creator><pubDate>Fri, 11 Jan 2019 16:15:37 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/da04ef5c07/?limit=25#8b7e</guid></item><item><title>Jacques Pelletier posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#6635</link><description>It would not be possible without splitting the hex file. Padding can't be turned off. Another solution would be that your chip programmer can take hex files directly.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 13 Dec 2018 06:10:51 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#6635</guid></item><item><title>Dave Turner posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#346a</link><description>HEX2BIN - I have an application where my assembler source jumps from $4000 to $8000. I do not want padding in between these addresses. Is there a way to turn off padding?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dave Turner</dc:creator><pubDate>Sun, 04 Nov 2018 23:47:40 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/caead6e965/?limit=25#346a</guid></item><item><title>Jacques Pelletier modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#bd0f</link><description>The options allows you to place the checksum at a specified address, so you can put it where you want. Do a test file, test it with the options to get it right. You can specify the range of the CRC calculation, so that the result won't overwrite the data. A trick would be to reserve some bytes for your checksum which will be in the hex file. Then, hex2bin can calculate the checksum and place it at the specified place.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 29 Sep 2018 19:10:19 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#bd0f</guid></item><item><title>Jacques Pelletier modified ticket #23</title><link>https://sourceforge.net/p/hex2bin/bugs/23/</link><description>-s option</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 29 Sep 2018 19:02:59 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/23/</guid></item><item><title>Jacques Pelletier modified ticket #24</title><link>https://sourceforge.net/p/hex2bin/bugs/24/</link><description>Please ignore ticket 23</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 29 Sep 2018 19:02:30 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/24/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #5</title><link>https://sourceforge.net/p/hex2bin/feature-requests/5/?limit=25#bd9c</link><description>This can be done in the current version by allowing extra empty bytes in your hex file for the CRC/Checksum. You specify the range from begin to last byte, and force following byte(s) to the checksum. hex2bin -r (begin) (last byte) -f (CRC/cheksum location)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 02 Aug 2018 16:49:57 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/5/?limit=25#bd9c</guid></item><item><title>Jacques Pelletier posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#bd0f</link><description>The options allows you to place the checksum at a specified address, so you can put it where you want. Do a test file, test it with the options to get it right. You can specify the range of the CRC calculation, so that the result won't overwrite the data.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 23 May 2018 02:59:02 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#bd0f</guid></item><item><title>Tim Lynch posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#6e07</link><description>Thanks for this great tool! Does the tool as-is support a way to prepend or append the computed checksum or CRC value to the resultant output file? Current options seem to want to place the checksum somewhere in the same range of the binary data derived from the hex file, thus overwriting some of that data. "Modify it to do that yourself" is a perfectly valid answer; I just wanted to make sure I'm not missing or misunderstanding something.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tim Lynch</dc:creator><pubDate>Tue, 10 Apr 2018 17:57:10 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/f364a46e/?limit=25#6e07</guid></item><item><title>Jacques Pelletier posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/fda06d9e/?limit=25#9506</link><description>I will include your modification in the next release coming soon. Can you send me your solution and vcx project files? I'll include this as well for convenience. Thanks!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 20 Jan 2018 05:26:58 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/fda06d9e/?limit=25#9506</guid></item><item><title>Anonymous created ticket #5</title><link>https://sourceforge.net/p/hex2bin/feature-requests/5/</link><description>Append CRC to end of binary file</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 18 Jan 2018 10:30:45 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/5/</guid></item><item><title>Ba Cao created ticket #24</title><link>https://sourceforge.net/p/hex2bin/bugs/24/</link><description>Please ignore ticket 23</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ba Cao</dc:creator><pubDate>Sat, 13 Jan 2018 10:15:19 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/24/</guid></item><item><title>Ba Cao created ticket #23</title><link>https://sourceforge.net/p/hex2bin/bugs/23/</link><description>-s option</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ba Cao</dc:creator><pubDate>Sat, 13 Jan 2018 10:05:16 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/23/</guid></item><item><title>Giangiacomo Zaffini posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/hex2bin/discussion/256465/thread/fda06d9e/?limit=25#b2f0</link><description>Lately I compiled on Windows 7 o.s. machine with Visual Studio 2017 Community edition with some specific components (namely 'Windows Universal CRT SDK' and 'Windows Universal C Runtime') because Visual Studio 2017 Community edition is iamed at Windows 10 o.s., so Hex2bin compiles just fine on Visual Studio 2017 Community (I can provide .sln solution file and .vcxproj project files). Here I want to signal that, for the time being, I changed common.h include file like this /* To compile with Microsoft...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giangiacomo Zaffini</dc:creator><pubDate>Fri, 29 Dec 2017 14:12:15 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/discussion/256465/thread/fda06d9e/?limit=25#b2f0</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2017/05/release-25-available/</link><description>Release 2.5 available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 11 May 2017 02:49:05 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2017/05/release-25-available/</guid></item><item><title>Hex2bin released /hex2bin/test/test-2.5.tar.bz2</title><link>https://sourceforge.nethttps%3A//sourceforge.net/projects/hex2bin/files/hex2bin/test/test-2.5.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Thu, 11 May 2017 02:46:03 -0000</pubDate><guid>https://sourceforge.net/projects/hex2bin/files/hex2bin/test/test-2.5.tar.bz2/download</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.5.tar.bz2</title><link>https://sourceforge.nethttps%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.5.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Thu, 11 May 2017 02:46:03 -0000</pubDate><guid>https://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.5.tar.bz2/download</guid></item><item><title>Jacques Pelletier modified ticket #6</title><link>https://sourceforge.net/p/hex2bin/patches/6/</link><description>Patch for add a new feature and some little fixes </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 11 May 2017 02:44:27 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/6/</guid></item><item><title>Simone Fratini created ticket #6</title><link>https://sourceforge.net/p/hex2bin/patches/6/</link><description>Patch for add a new feature and some little fixes </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Simone Fratini</dc:creator><pubDate>Tue, 18 Apr 2017 14:09:53 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/6/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2017/03/website-updated/</link><description>Website updated</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 19 Mar 2017 03:56:33 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2017/03/website-updated/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #19</title><link>https://sourceforge.net/p/hex2bin/bugs/19/?limit=25#adb1</link><description>Implemented as -k 5 checksum method</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 19:18:45 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/19/?limit=25#adb1</guid></item><item><title>Jacques Pelletier modified ticket #19</title><link>https://sourceforge.net/p/hex2bin/bugs/19/</link><description>case CHK16 calculated incorrectly from HxD</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 19:18:45 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/19/</guid></item><item><title>Jacques Pelletier modified ticket #20</title><link>https://sourceforge.net/p/hex2bin/bugs/20/</link><description>Small Makefile issue causes compile issues on some Linux targets</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 19:17:30 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/20/</guid></item><item><title>Jacques Pelletier modified ticket #22</title><link>https://sourceforge.net/p/hex2bin/bugs/22/</link><description>contains illigal files.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 19:16:49 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/22/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #22</title><link>https://sourceforge.net/p/hex2bin/bugs/22/?limit=25#1d95</link><description>Moved test files into its own release</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 19:16:49 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/22/?limit=25#1d95</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2017/03/release-24-available/</link><description>Release 2.4 available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 05 Mar 2017 09:10:25 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2017/03/release-24-available/</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.4.tar.bz2</title><link>https://sourceforge.nethttps%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.4.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Sun, 05 Mar 2017 08:44:02 -0000</pubDate><guid>https://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.4.tar.bz2/download</guid></item><item><title>Hex2bin released /hex2bin/test/test-2.4.tar.bz2</title><link>https://sourceforge.nethttps%3A//sourceforge.net/projects/hex2bin/files/hex2bin/test/test-2.4.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Sat, 04 Mar 2017 21:34:06 -0000</pubDate><guid>https://sourceforge.net/projects/hex2bin/files/hex2bin/test/test-2.4.tar.bz2/download</guid></item><item><title>Jacques Pelletier modified a comment on ticket #21</title><link>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</link><description>The format in the sample is this: 000000 5B 5A 1B 4F 0E 9D E4 1F 40 8F 76 85 13 CA...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 04 Mar 2017 19:08:15 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</guid></item><item><title>Jacques Pelletier modified ticket #21</title><link>https://sourceforge.net/p/hex2bin/bugs/21/</link><description>Required Input File Format</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 04 Mar 2017 19:02:26 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/21/</guid></item><item><title>Jacques Pelletier modified a comment on ticket #21</title><link>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</link><description>The format in the sample is this: 000000 5B 5A 1B 4F 0E 9D E4 1F 40 8F 76 85 13 CA...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 04 Mar 2017 19:00:34 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</guid></item><item><title>Jacques Pelletier posted a comment on ticket #21</title><link>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</link><description>The format in the sample is this: 000000 5B 5A 1B 4F 0E 9D E4 1F 40 8F 76 85 13 CA...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 04 Mar 2017 18:59:41 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/21/?limit=25#0659</guid></item><item><title>Jason Harrison created ticket #22</title><link>https://sourceforge.net/p/hex2bin/bugs/22/</link><description>contains illigal files.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jason Harrison</dc:creator><pubDate>Sat, 04 Mar 2017 02:25:32 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/22/</guid></item><item><title>Glen Downie created ticket #21</title><link>https://sourceforge.net/p/hex2bin/bugs/21/</link><description>Required Input File Format</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Glen Downie</dc:creator><pubDate>Tue, 28 Feb 2017 12:44:30 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/21/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #20</title><link>https://sourceforge.net/p/hex2bin/bugs/20/?limit=25#b91a</link><description>I'll make the change in the next release. Thanks!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 17 Dec 2016 10:24:24 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/20/?limit=25#b91a</guid></item><item><title>Donna Whisnant created ticket #20</title><link>https://sourceforge.net/p/hex2bin/bugs/20/</link><description>Small Makefile issue causes compile issues on some Linux targets</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Donna Whisnant</dc:creator><pubDate>Wed, 07 Dec 2016 05:47:50 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/20/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #19</title><link>https://sourceforge.net/p/hex2bin/bugs/19/?limit=25#a486</link><description>I tried the string "123456789" with HxD: it gives 1DD which is the sum of 31 to 39...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 05 Nov 2016 20:47:51 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/19/?limit=25#a486</guid></item><item><title>Anonymous created ticket #19</title><link>https://sourceforge.net/p/hex2bin/bugs/19/</link><description>case CHK16 calculated incorrectly from HxD</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 26 Oct 2016 09:03:44 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/19/</guid></item><item><title>Jacques Pelletier modified ticket #17</title><link>https://sourceforge.net/p/hex2bin/bugs/17/</link><description>Message Force/Check address range</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 15 Oct 2016 20:30:00 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/17/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #17</title><link>https://sourceforge.net/p/hex2bin/bugs/17/?limit=25#a310</link><description>The message was displayed when force/check address feature was not used, so there...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 15 Oct 2016 20:29:34 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/17/?limit=25#a310</guid></item><item><title>Jacques Pelletier modified ticket #18</title><link>https://sourceforge.net/p/hex2bin/bugs/18/</link><description>Long Pathname crashes hex2bin</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 15 Oct 2016 20:26:36 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/18/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2016/10/release-23-available/</link><description>Release 2.3 available</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 08 Oct 2016 04:02:30 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2016/10/release-23-available/</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.3.tar.bz2</title><link>https://sourceforge.nethttps%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.3.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Sat, 08 Oct 2016 03:59:02 -0000</pubDate><guid>https://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.3.tar.bz2/download</guid></item><item><title>Jacques Pelletier posted a comment on ticket #18</title><link>https://sourceforge.net/p/hex2bin/bugs/18/?limit=25#6efc</link><description>In common.h, the filename size is defined at 81 characters. /* FIXME how to get it...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Mon, 26 Sep 2016 05:16:46 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/18/?limit=25#6efc</guid></item><item><title>Anonymous created ticket #18</title><link>https://sourceforge.net/p/hex2bin/bugs/18/</link><description>Long Pathname crashes hex2bin</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 22 Sep 2016 15:12:14 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/18/</guid></item><item><title>Jacques Pelletier created ticket #17</title><link>https://sourceforge.net/p/hex2bin/bugs/17/</link><description>Message Force/Check address range</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 30 Jul 2016 08:29:37 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/17/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #5</title><link>https://sourceforge.net/p/hex2bin/patches/5/?limit=25#dc60</link><description>Patch has been applied in Hex2bin 2.2</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 28 Feb 2016 05:02:01 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/5/?limit=25#dc60</guid></item><item><title>Jacques Pelletier modified ticket #5</title><link>https://sourceforge.net/p/hex2bin/patches/5/</link><description>Two bug fixes for Hex2bin 2.1 w/patch file</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 28 Feb 2016 05:02:01 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/5/</guid></item><item><title>Jacques Pelletier modified ticket #16</title><link>https://sourceforge.net/p/hex2bin/bugs/16/</link><description>hex2bin 2.x creates a very large bin file from a smaller hex</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Tue, 01 Dec 2015 03:44:10 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/16/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/11/release-22-is-available/</link><description>Release 2.2 is available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 29 Nov 2015 00:48:36 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/11/release-22-is-available/</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.2.tar.bz2</title><link>https://sourceforge.nethttp%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.2.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Sun, 29 Nov 2015 00:48:02 -0000</pubDate><guid>http://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.2.tar.bz2/download</guid></item><item><title>Jacques Pelletier posted a comment on ticket #5</title><link>https://sourceforge.net/p/hex2bin/patches/5/?limit=25#d01e</link><description>Le 2015-11-23 22:55, Donna Whisnant a écrit : [patches:#5] http://sourceforge.net/p/hex2bin/patches/5/...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 25 Nov 2015 02:47:14 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/5/?limit=25#d01e</guid></item><item><title>Donna Whisnant created ticket #5</title><link>https://sourceforge.net/p/hex2bin/patches/5/</link><description>Two bug fixes for Hex2bin 2.1 w/patch file</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Donna Whisnant</dc:creator><pubDate>Tue, 24 Nov 2015 03:55:40 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/5/</guid></item><item><title>Jacques Pelletier modified a comment on ticket #16</title><link>https://sourceforge.net/p/hex2bin/bugs/16/?limit=25#18c4</link><description>It seems the large size is normal, since there is an extended linear address record...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Fri, 23 Oct 2015 01:35:42 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/16/?limit=25#18c4</guid></item><item><title>Jacques Pelletier posted a comment on ticket #16</title><link>https://sourceforge.net/p/hex2bin/bugs/16/?limit=25#18c4</link><description>It seems the large size is normal, since there is an extended linear address record...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Fri, 23 Oct 2015 01:25:04 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/16/?limit=25#18c4</guid></item><item><title>McGerbick created ticket #16</title><link>https://sourceforge.net/p/hex2bin/bugs/16/</link><description>hex2bin 2.x creates a very large bin file from a smaller hex</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">McGerbick</dc:creator><pubDate>Tue, 20 Oct 2015 10:21:33 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/16/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/08/website-updated/</link><description>Website updated</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 13 Aug 2015 02:14:29 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/08/website-updated/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-supports-micros-from-ti/</link><description>Release 2.1 supports micros from TI</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 06 Aug 2015 13:49:56 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-supports-micros-from-ti/</guid></item><item><title>Jacques Pelletier modified ticket #4</title><link>https://sourceforge.net/p/hex2bin/feature-requests/4/</link><description>Patch and New Feature</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 06 Aug 2015 13:40:03 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/4/</guid></item><item><title>Jacques Pelletier modified ticket #11</title><link>https://sourceforge.net/p/hex2bin/bugs/11/</link><description>Offset command line option ignored</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 06 Aug 2015 13:39:36 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/11/</guid></item><item><title>Jacques Pelletier modified ticket #3</title><link>https://sourceforge.net/p/hex2bin/patches/3/</link><description>length flag not working correctly</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 06 Aug 2015 13:38:41 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/3/</guid></item><item><title>Jacques Pelletier modified ticket #4</title><link>https://sourceforge.net/p/hex2bin/patches/4/</link><description>Upper_Address uninitialized in previous patch</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 06 Aug 2015 13:38:10 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/4/</guid></item><item><title>Jacques Pelletier modified a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-is-available/</link><description>Release 2.1 is available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 05 Aug 2015 19:23:40 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-is-available/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-is-available/</link><description>Release 2.1 is available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 05 Aug 2015 19:20:07 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/08/release-21-is-available/</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.1.tar.bz2</title><link>https://sourceforge.nethttp%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.1.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Wed, 05 Aug 2015 19:17:06 -0000</pubDate><guid>http://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.1.tar.bz2/download</guid></item><item><title>Jacques Pelletier modified ticket #15</title><link>https://sourceforge.net/p/hex2bin/bugs/15/</link><description>Please add the missing folders and the .gz-file in the tarball</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 02 Aug 2015 14:58:57 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/15/</guid></item><item><title>Simone Fratini created ticket #4</title><link>https://sourceforge.net/p/hex2bin/feature-requests/4/</link><description>Patch and New Feature</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Simone Fratini</dc:creator><pubDate>Sat, 25 Jul 2015 15:20:53 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/4/</guid></item><item><title>Jacques Pelletier modified ticket #3</title><link>https://sourceforge.net/p/hex2bin/feature-requests/3/</link><description>Add CRC8</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 14 Mar 2015 22:19:16 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/3/</guid></item><item><title>avi tal posted a comment on a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-available/?limit=25#0d3f</link><description>Hi, In the last section of common.c, I think that instead of: Module = Max_Length...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">avi tal</dc:creator><pubDate>Tue, 10 Mar 2015 14:45:13 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-available/?limit=25#0d3f</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-available/</link><description>Release 2.0 available!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 28 Feb 2015 23:48:15 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-available/</guid></item><item><title>Hex2bin released /hex2bin/Hex2bin-2.0.tar.bz2</title><link>https://sourceforge.nethttp%3A//sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.0.tar.bz2/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hex2bin</dc:creator><pubDate>Sat, 28 Feb 2015 23:43:03 -0000</pubDate><guid>http://sourceforge.net/projects/hex2bin/files/hex2bin/Hex2bin-2.0.tar.bz2/download</guid></item><item><title>Jacques Pelletier modified a comment on ticket #11</title><link>https://sourceforge.net/p/hex2bin/bugs/11/?limit=25#9418</link><description>It would work as expected with -s 0000 instead of -s 0D00. Bin file will begin at...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 26 Feb 2015 04:22:18 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/11/?limit=25#9418</guid></item><item><title>Jacques Pelletier posted a comment on ticket #11</title><link>https://sourceforge.net/p/hex2bin/bugs/11/?limit=25#9418</link><description>It would work as expected with -s 0000. Bin file will begin at 0.0000 with 0.0000...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Thu, 26 Feb 2015 04:21:46 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/bugs/11/?limit=25#9418</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-coming-soon/</link><description>Release 2.0 coming soon...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Wed, 25 Feb 2015 06:41:21 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/release-20-coming-soon/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/working-on-next-release-20/</link><description>Working on next release (2.0)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Mon, 23 Feb 2015 00:08:07 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/working-on-next-release-20/</guid></item><item><title>Jacques Pelletier modified a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/on-next-release-possibility-to-add-crc-inside-binary-file/</link><description>On next release: possibility to add CRC inside binary file</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 01 Feb 2015 00:02:25 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/on-next-release-possibility-to-add-crc-inside-binary-file/</guid></item><item><title>Jacques Pelletier created a blog post</title><link>https://sourceforge.net/p/hex2bin/news/2015/02/on-next-release-possibility-to-add-crc-inside-binary-file/</link><description>On next release: possibility to add CRC inside binary file</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sun, 01 Feb 2015 00:02:00 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/news/2015/02/on-next-release-possibility-to-add-crc-inside-binary-file/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #3</title><link>https://sourceforge.net/p/hex2bin/feature-requests/3/?limit=25#8931</link><description>I made several CRC routines so I will incorporate them into the next release.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 31 Jan 2015 23:59:32 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/3/?limit=25#8931</guid></item><item><title>Kufer created ticket #3</title><link>https://sourceforge.net/p/hex2bin/feature-requests/3/</link><description>Add CRC8</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kufer</dc:creator><pubDate>Thu, 29 Jan 2015 10:21:59 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/feature-requests/3/</guid></item><item><title>Jacques Pelletier posted a comment on ticket #4</title><link>https://sourceforge.net/p/hex2bin/patches/4/?limit=25#639a</link><description>Thanks for the patches! I will try to apply them manually to mot2bin.c too.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jacques Pelletier</dc:creator><pubDate>Sat, 24 Jan 2015 05:07:22 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/4/?limit=25#639a</guid></item><item><title>rico created ticket #4</title><link>https://sourceforge.net/p/hex2bin/patches/4/</link><description>Upper_Address uninitialized in previous patch</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rico</dc:creator><pubDate>Fri, 16 Jan 2015 11:55:27 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/4/</guid></item><item><title>Anonymous created ticket #3</title><link>https://sourceforge.net/p/hex2bin/patches/3/</link><description>length flag not working correctly</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 16 Jan 2015 11:22:27 -0000</pubDate><guid>https://sourceforge.net/p/hex2bin/patches/3/</guid></item></channel></rss>