1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
_ __ _ _ ___ _ __ ___
| '_ \| | | |/ __| '__/ __|
| |_) | |_| | (__| | | (__
| .__/ \__, |\___|_| \___|
|_| |___/
http://www.tty1.net/pycrc/
pycrc is a free, easy to use Cyclic Redundancy Check (CRC) calculator and
C source code generator.
System Requirements
===================
pycrc requires Python 2.6 or later. Python 3.x is supported.
The last version compatible with Python 2.4 is pycrc v0.7.10.
Installation
============
This program doesn't need any particular installation. The script can be
called from any directory.
Simply call the python interpreter with the script as parameter:
python pycrc.py [options]
On UNIX-like systems, you might want to make the script executable:
chmod +x pycrc.py
Then the script can be called like an application.
./pycrc.py [options]
Getting help
============
If you are new to pycrc and want to generate C code, start with
[the tutorial](http://www.tty1.net/pycrc/tutorial_en.html).
The [pycrc manual page](http://www.tty1.net/pycrc/pycrc.html) explains the command
line options in some detail and also gives some more examples how to use pycrc.
If you have questions about using pycrc which is not answered in a satisfactory
way by the documentation, please send a mail to the pycrc user mailing list
<pycrc-users@lists.sourceforge.net>. Subscribe to the mailing list
[pycrc users list](https://lists.sourceforge.net/lists/listinfo/pycrc-users).
Due to excessive spamming a subscription is required to post on the list.
If you have found a bug in pycrc, please take the time and file it to the
[bug tracker](http://sourceforge.net/p/pycrc/bugs/) or record a
[feature request](http://sourceforge.net/p/pycrc/feature-requests/).
Thanks for your collaboration.
Also see the [frequently asked questions](http://www.tty1.net/pycrc/faq.html).
Feedback
========
If you like pycrc, let me know and drop me a note. If you don't like pycrc let
me know what you don't like and why. In both cases, I would really appreciate
some [feed back](http://sourceforge.net/projects/pycrc/reviews/).
If you want some idea how to say thanks for this software, please have a look
[here](http://www.tty1.net/say-thanks_en.html).
Copyright of the generated source code
======================================
Prior to v0.6, pycrc was released under the GPL and an additional addition to
the licence was required to permit to use the generated source code in products
with a OSI unapproved licence. As of version 0.6, pycrc is released under the
terms of the MIT licence and such an additional clause to the licence is no
more required.
The code generated by pycrc is not considered a substantial portion of the
software, therefore the licence does not cover the generated code, and the
author of pycrc will not claim any copyright on the generated code.
|