Skip to content

Commit

Permalink
Formatting and library structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakercp committed Oct 15, 2016
1 parent 7c3c7b6 commit 6938065
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/CRC32/CRC32.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// =============================================================================
//
// Copyright (c) 2013 Christopher Baker <http://christopherbaker.net>
// Copyright (c) 2013-2016 Christopher Baker <http://christopherbaker.net>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -52,4 +52,4 @@ void loop()
Serial.println();

delay(1000);
}
}
5 changes: 3 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name=CRC32
version=1.0
version=1.0.0
author=Christopher Baker <[email protected]>
maintainer=Christopher Baker <[email protected]>
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
architectures=*
category=Data Processing
2 changes: 1 addition & 1 deletion src/CRC32.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// =============================================================================
//
// Copyright (c) 2013 Christopher Baker <http://christopherbaker.net>
// Copyright (c) 2013-2016 Christopher Baker <http://christopherbaker.net>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions src/CRC32.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// =============================================================================
//
// Copyright (c) 2013 Christopher Baker <http://christopherbaker.net>
// Copyright (c) 2013-2016 Christopher Baker <http://christopherbaker.net>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -29,7 +29,7 @@
#include "Arduino.h"


class CRC32
class CRC32
{
public:
static uint32_t checksum(const uint8_t* data, size_t size);
Expand Down

0 comments on commit 6938065

Please sign in to comment.