diff options
| author | Marcin Bukat <marcin.bukat@gmail.com> | 2012-03-02 16:29:42 +0100 |
|---|---|---|
| committer | Marcin Bukat <marcin.bukat@gmail.com> | 2012-03-04 00:34:26 +0100 |
| commit | 2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60 (patch) | |
| tree | e14606096fa23091db5568d5312e2bda1ba176f3 /firmware/include | |
| parent | f35e300304388c30fdeb6493ec5e5e5bd52e3aab (diff) | |
| download | rockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.zip rockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.tar.gz rockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.tar.bz2 rockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.tar.xz | |
Add RKW firmware file format loader
Change-Id: I5283fdcdb8d263fd9375a6d29396f82650aeb686
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/crc32-rkw.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/firmware/include/crc32-rkw.h b/firmware/include/crc32-rkw.h new file mode 100644 index 0000000..b33069e --- /dev/null +++ b/firmware/include/crc32-rkw.h @@ -0,0 +1,27 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2012 Marcin Bukat + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#include <stdint.h> + +#ifndef _CRC32_RKW_H +#define _CRC32_RKW_H + +uint32_t crc32_rkw (const uint8_t *src, uint32_t length); + +#endif |