Added pycrc library (MIT License) for CRC calculations to the repository.
This commit is contained in:
parent
c35e26f025
commit
3233dc96b1
24 changed files with 6136 additions and 0 deletions
66
pycrc/README
Normal file
66
pycrc/README
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
_ __ _ _ ___ _ __ ___
|
||||
| '_ \| | | |/ __| '__/ __|
|
||||
| |_) | |_| | (__| | | (__
|
||||
| .__/ \__, |\___|_| \___|
|
||||
|_| |___/
|
||||
|
||||
|
||||
http://www.tty1.net/pycrc/
|
||||
|
||||
|
||||
pycrc is a free, easy to use Cyclic Redundancy Check (CRC) calculator and
|
||||
source code generator.
|
||||
|
||||
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
pycrc requires Python 2.4 or later. Python 3.x is supported.
|
||||
|
||||
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 manual page (http://www.tty1.net/pycrc/pycrc.html) explains the command
|
||||
line options and gives some 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>. The list info page is available at
|
||||
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 issue
|
||||
tracker at https://sourceforge.net/tracker/?group_id=186891
|
||||
Thanks for your collaboration.
|
||||
|
||||
Also see http://www.tty1.net/pycrc/faq.html for frequently asked questions.
|
||||
|
||||
|
||||
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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue