SDFileSystem library for FAT compatible
SDCRC.h@0:583b9f0b91e7, 2016-10-13 (annotated)
- Committer:
- sameera0824
- Date:
- Thu Oct 13 10:51:33 2016 +0000
- Revision:
- 0:583b9f0b91e7
adding SD
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
sameera0824 | 0:583b9f0b91e7 | 1 | /* SD/MMC File System Library |
sameera0824 | 0:583b9f0b91e7 | 2 | * Copyright (c) 2016 Neil Thiessen |
sameera0824 | 0:583b9f0b91e7 | 3 | * |
sameera0824 | 0:583b9f0b91e7 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
sameera0824 | 0:583b9f0b91e7 | 5 | * you may not use this file except in compliance with the License. |
sameera0824 | 0:583b9f0b91e7 | 6 | * You may obtain a copy of the License at |
sameera0824 | 0:583b9f0b91e7 | 7 | * |
sameera0824 | 0:583b9f0b91e7 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
sameera0824 | 0:583b9f0b91e7 | 9 | * |
sameera0824 | 0:583b9f0b91e7 | 10 | * Unless required by applicable law or agreed to in writing, software |
sameera0824 | 0:583b9f0b91e7 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
sameera0824 | 0:583b9f0b91e7 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
sameera0824 | 0:583b9f0b91e7 | 13 | * See the License for the specific language governing permissions and |
sameera0824 | 0:583b9f0b91e7 | 14 | * limitations under the License. |
sameera0824 | 0:583b9f0b91e7 | 15 | */ |
sameera0824 | 0:583b9f0b91e7 | 16 | |
sameera0824 | 0:583b9f0b91e7 | 17 | #ifndef SD_CRC_H |
sameera0824 | 0:583b9f0b91e7 | 18 | #define SD_CRC_H |
sameera0824 | 0:583b9f0b91e7 | 19 | |
sameera0824 | 0:583b9f0b91e7 | 20 | #include "mbed.h" |
sameera0824 | 0:583b9f0b91e7 | 21 | |
sameera0824 | 0:583b9f0b91e7 | 22 | namespace SDCRC |
sameera0824 | 0:583b9f0b91e7 | 23 | { |
sameera0824 | 0:583b9f0b91e7 | 24 | |
sameera0824 | 0:583b9f0b91e7 | 25 | char crc7(const char* data, int length); |
sameera0824 | 0:583b9f0b91e7 | 26 | unsigned short crc16(const char* data, int length); |
sameera0824 | 0:583b9f0b91e7 | 27 | |
sameera0824 | 0:583b9f0b91e7 | 28 | } |
sameera0824 | 0:583b9f0b91e7 | 29 | |
sameera0824 | 0:583b9f0b91e7 | 30 | #endif |