-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed critical issue <#1> which was leading to a ImportError because of not including the proper headers when compiling.
- Loading branch information
1 parent
778798e
commit 28e9646
Showing
10 changed files
with
16,995 additions
and
18,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include pysbf/c_crc.h |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* | ||
#This file is part of "pysbf". | ||
#Copyright (c) 2013, Jashandeep Sohi ([email protected]) | ||
# | ||
|
@@ -13,3 +14,6 @@ | |
#You should have received a copy of the GNU General Public License | ||
#along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
uint16_t crc16(const void *buf, size_t buf_length, uint16_t crc); |
Oops, something went wrong.