diff --git a/examples/CRC32/CRC32.ino b/examples/CRC32/CRC32.ino index 1322b36..b51a0d3 100644 --- a/examples/CRC32/CRC32.ino +++ b/examples/CRC32/CRC32.ino @@ -1,6 +1,6 @@ // ============================================================================= // -// Copyright (c) 2013 Christopher Baker +// Copyright (c) 2013-2016 Christopher Baker // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -52,4 +52,4 @@ void loop() Serial.println(); delay(1000); -} \ No newline at end of file +} diff --git a/library.properties b/library.properties index 6594ed6..5d65ad5 100644 --- a/library.properties +++ b/library.properties @@ -1,8 +1,9 @@ name=CRC32 -version=1.0 +version=1.0.0 author=Christopher Baker maintainer=Christopher Baker sentence=An Arduino library for calculating a CRC32 checksum. paragraph=An Arduino library for calculating a CRC32 checksum. url=https://github.com/bakercp/CRC32 -architectures=avr \ No newline at end of file +architectures=* +category=Data Processing \ No newline at end of file diff --git a/src/CRC32.cpp b/src/CRC32.cpp index 77e7d39..bf2f10c 100644 --- a/src/CRC32.cpp +++ b/src/CRC32.cpp @@ -1,6 +1,6 @@ // ============================================================================= // -// Copyright (c) 2013 Christopher Baker +// Copyright (c) 2013-2016 Christopher Baker // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/CRC32.h b/src/CRC32.h index a9e1b57..c97040e 100644 --- a/src/CRC32.h +++ b/src/CRC32.h @@ -1,6 +1,6 @@ // ============================================================================= // -// Copyright (c) 2013 Christopher Baker +// Copyright (c) 2013-2016 Christopher Baker // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -29,7 +29,7 @@ #include "Arduino.h" -class CRC32 +class CRC32 { public: static uint32_t checksum(const uint8_t* data, size_t size);