code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/** ****************************************************************************** * @file stm32f4xx_it.h * @author MCD Application Team * @version V1.0.0 * @date 19-September-2011 * @brief This file contains the headers of the interrupt handlers. *****************************************...
1137519-player
stm32f4xx_it.h
C
lgpl
2,052
/* * fx.c * * Created on: 2013/02/23 * Author: Tonsuke */ #include <math.h> #include "fx.h" #include "sound.h" #include "arm_math.h" #include "usart.h" #define M_PI_F ((float)(M_PI)) void REVERB_Set_Prams(REVERB_Struct_Typedef *RFX) { RFX->amp[0] = 0.0f; RFX->delay[0] = 0; RFX->repeat[0] = 0; REVER...
1137519-player
fx.c
C
lgpl
7,142
/* * fat.c * * Created on: 2011/02/27 * Author: Tonsuke */ #include "cfile.h" #include <stdlib.h> #include <string.h> C_FILE* c_fopen(uint32_t fileAddr, size_t fileSize) { C_FILE *fp = malloc(sizeof(C_FILE)); fp->c_file_addr = fileAddr; fp->seekBytes = fileAddr; fp->fileSize = fileSize; return fp; }...
1137519-player
cfile.c
C
lgpl
1,289
/* * sound.h * * Created on: 2011/03/12 * Author: Tonsuke */ #ifndef SOUND_H_ #define SOUND_H_ #include "stm32f4xx_conf.h" #include "string.h" #include "stdlib.h" #include "stdio.h" #include "fat.h" #include "usart.h" #include "icon.h" #define MUSIC_INFO_POS_Y 24 /* typedef struct { char headStrRIFF[4];...
1137519-player
sound.h
C
lgpl
2,473
/** ****************************************************************************** * @file usbd_storage_template.c * @author MCD Application Team * @version V1.0.0 * @date 22-July-2011 * @brief Memory management layer ************************************************************************...
1137519-player
usbd_storage_msd.c
C
lgpl
6,777
/* * fat.c * * Created on: 2011/02/27 * Author: Tonsuke */ #include <stdlib.h> #include <string.h> #include <ctype.h> #include "fat.h" #include "sd.h" #include "lcd.h" #include "usart.h" #include "mjpeg.h" #include "settings.h" #undef MY_DEBUG const uint8_t partition_system_id[] = { 0x4, // FAT16 <32M ...
1137519-player
fat.c
C
lgpl
30,862
#include "stm32f4xx_conf.h" #include "dojpeg.h" #include "lcd.h" #include "fat.h" #include "usart.h" #include "xpt2046.h" #include "settings.h" #include "sound.h" #include "jerror.h" #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ #include <ctype.h> /* to declare isprint() */ #include "mpool....
1137519-player
dojpeg.c
C
lgpl
19,195
/* * icon.c * * Created on: 2013/03/11 * Author: Tonsuke */ #include "icon.h" #include "lcd.h" #include "sound.h" void Update_Navigation_Loop_Icon(uint8_t index) { LCDPutBuffToBgImg(_drawBuff->navigation_loop.x, _drawBuff->navigation_loop.y, \ _drawBuff->navigation_loop.width, _drawBuff->navigation_lo...
1137519-player
icon.c
C
lgpl
4,513
/* * mjpeg.c * * Created on: 2011/07/10 * Author: Tonsuke */ #include <string.h> #include <stdio.h> #include <stdlib.h> #include "lcd.h" #include "sound.h" #include "fat.h" #include "xpt2046.h" #include "usart.h" #include "pcf_font.h" #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ #i...
1137519-player
mjpeg.c
C
lgpl
46,105
/* * lcd.h * * Created on: 2011/02/19 * Author: masayuki */ #ifndef LCD_H_ #define LCD_H_ #include "stm32f4xx_conf.h" #include "fat.h" #include "font.h" #include "icon.h" #define red 0xf800 #define green 0x07e0 #define blue 0x001f #define skyblue 0x7e9f #define white 0xffff #define gray 0x...
1137519-player
lcd.h
C
lgpl
5,404
/** ****************************************************************************** * @file usbd_desc.h * @author MCD Application Team * @version V1.1.0 * @date 19-March-2012 * @brief header file for the usbd_desc.c file **********************************************************************...
1137519-player
usbd_desc.h
C
lgpl
3,554
/* * sjis2utf16.h * * Created on: 2012/12/05 * Author: masayuki */ #ifndef SJIS2UTF16_H_ #define SJIS2UTF16_H_ const uint16_t sjis2utf16_table[] = { 0x3000, 0x3001, 0x3002, 0xff0c, 0xff0e, 0x30fb, 0xff1a, 0xff1b, 0xff1f, 0xff01, 0x309b, 0x309c, 0x00b4, 0xff40, 0x00a8, 0xff3e, 0xffe3, 0xff3f, 0x30fd...
1137519-player
sjis2utf16.h
C
lgpl
225,035
/** ****************************************************************************** * @file usb_conf.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief general low level driver configuration **********************************************************************...
1137519-player
usb_conf.h
C
lgpl
9,626
/** ****************************************************************************** * @file stm32f4xx_conf.h * @author MCD Application Team * @version V1.0.0 * @date 19-September-2011 * @brief Library configuration file. ********************************************************************...
1137519-player
stm32f4xx_conf.h
C
lgpl
3,894
# MCU name MCU = -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -march=armv7e-m -mtune=cortex-m4 -mfloat-abi=softfp -mlittle-endian -mthumb-interwork # Target file name (without extension). TARGET = libstd.a # List C source files here. (C dependencies are automatically generated.) SRC = src/misc.c \ src/stm32f4xx_adc.c...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/Makefile
Makefile
lgpl
5,283
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head> <met...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/Release_Notes.html
HTML
lgpl
37,684
/** ****************************************************************************** * @file stm32f4xx_gpio.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the G...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c
C
lgpl
21,026
/** ****************************************************************************** * @file stm32f4xx_cryp_des.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides high level functions to encrypt and decrypt an * input message us...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c
C
lgpl
9,358
/** ****************************************************************************** * @file stm32f4xx_iwdg.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the I...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c
C
lgpl
9,540
/** ****************************************************************************** * @file stm32f4xx_dac.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the D...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dac.c
C
lgpl
26,992
/** ****************************************************************************** * @file stm32f4xx_dma.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Di...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c
C
lgpl
52,566
/** ****************************************************************************** * @file stm32f4xx_sdio.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the S...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c
C
lgpl
39,696
/** ****************************************************************************** * @file misc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides all the miscellaneous firmware functions (add-on * to CMSIS functions). * ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/misc.c
C
lgpl
11,311
/** ****************************************************************************** * @file stm32f4xx_crc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides all the CRC firmware functions. ************************************************...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c
C
lgpl
3,464
/** ****************************************************************************** * @file stm32f4xx_exti.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the E...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c
C
lgpl
10,215
/** ****************************************************************************** * @file stm32f4xx_hash_sha1.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides high level functions to compute the HASH SHA1 and * HMAC SHA1 Dig...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c
C
lgpl
9,740
/** ****************************************************************************** * @file stm32f4xx_tim.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the TI...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c
C
lgpl
125,221
/** ****************************************************************************** * @file stm32f4xx_wwdg.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the W...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c
C
lgpl
10,661
/** ****************************************************************************** * @file stm32f4xx_hash.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the H...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c
C
lgpl
26,087
/** ****************************************************************************** * @file stm32f4xx_fsmc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the F...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c
C
lgpl
41,759
/** ****************************************************************************** * @file stm32f4xx_cryp_aes.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides high level functions to encrypt and decrypt an * input message us...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c
C
lgpl
21,649
/** ****************************************************************************** * @file stm32f4xx_can.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Co...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c
C
lgpl
59,927
/** ****************************************************************************** * @file stm32f4xx_cryp.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c
C
lgpl
32,587
/** ****************************************************************************** * @file stm32f4xx_i2c.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the In...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c
C
lgpl
52,683
/** ****************************************************************************** * @file stm32f4xx_dcmi.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the D...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c
C
lgpl
18,866
/** ****************************************************************************** * @file stm32f4xx_spi.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Se...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c
C
lgpl
51,884
/** ****************************************************************************** * @file stm32f4xx_adc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the An...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c
C
lgpl
68,273
/** ****************************************************************************** * @file stm32f4xx_usart.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c
C
lgpl
56,560
/** ****************************************************************************** * @file stm32f4xx_rtc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Re...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c
C
lgpl
103,654
/** ****************************************************************************** * @file stm32f4xx_syscfg.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the SYSCFG peripheral. * * @verbatim * ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c
C
lgpl
7,856
/** ****************************************************************************** * @file stm32f4xx_pwr.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Po...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c
C
lgpl
24,236
/** ****************************************************************************** * @file stm32f4xx_rcc.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Re...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c
C
lgpl
74,630
/** ****************************************************************************** * @file stm32f4xx_dbgmcu.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides all the DBGMCU firmware functions. ******************************************...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c
C
lgpl
6,677
/** ****************************************************************************** * @file stm32f4xx_flash.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c
C
lgpl
37,714
/** ****************************************************************************** * @file stm32f4xx_hash_md5.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides high level functions to compute the HASH MD5 and * HMAC MD5 Digest...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c
C
lgpl
9,544
/** ****************************************************************************** * @file stm32f4xx_cryp_tdes.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides high level functions to encrypt and decrypt an * input message u...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_tdes.c
C
lgpl
10,082
/** ****************************************************************************** * @file stm32f4xx_rng.c * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file provides firmware functions to manage the following * functionalities of the Ra...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c
C
lgpl
14,011
/** ****************************************************************************** * @file misc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the miscellaneous * firmware library functions ...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/misc.h
C
lgpl
6,792
/** ****************************************************************************** * @file stm32f4xx_sdio.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the SDIO firmware * library. *****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h
C
lgpl
22,645
/** ****************************************************************************** * @file stm32f4xx_wwdg.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the WWDG firmware * library. *****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h
C
lgpl
3,410
/** ****************************************************************************** * @file stm32f4xx_dac.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the DAC firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h
C
lgpl
14,814
/** ****************************************************************************** * @file stm32f4xx_exti.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the EXTI firmware * library. *****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h
C
lgpl
7,880
/** ****************************************************************************** * @file stm32f4xx_rcc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the RCC firmware library. *********************...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h
C
lgpl
24,677
/** ****************************************************************************** * @file stm32f4xx_iwdg.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the IWDG * firmware library. ****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h
C
lgpl
4,191
/** ****************************************************************************** * @file stm32f4xx_rng.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the Random * Number Generator(RNG) fi...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h
C
lgpl
3,826
/** ****************************************************************************** * @file stm32f4xx_flash.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the FLASH * firmware library. **...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h
C
lgpl
14,463
/** ****************************************************************************** * @file stm32f4xx_usart.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the USART * firmware library. **...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h
C
lgpl
17,252
/** ****************************************************************************** * @file stm32f4xx_gpio.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the GPIO firmware * library. *****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h
C
lgpl
17,569
/** ****************************************************************************** * @file stm32f4xx_dcmi.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the DCMI firmware library. *******************...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h
C
lgpl
12,845
/** ****************************************************************************** * @file stm32f4xx_syscfg.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the SYSCFG firmware * library. *...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h
C
lgpl
7,096
/** ****************************************************************************** * @file stm32f4xx_pwr.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the PWR firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h
C
lgpl
5,549
/** ****************************************************************************** * @file stm32f4xx_i2c.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the I2C firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h
C
lgpl
31,516
/** ****************************************************************************** * @file stm32f4xx_crc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the CRC firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h
C
lgpl
2,284
/** ****************************************************************************** * @file stm32f4xx_hash.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the HASH * firmware library. ****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h
C
lgpl
8,952
/** ****************************************************************************** * @file stm32f4xx_adc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the ADC firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h
C
lgpl
32,417
/** ****************************************************************************** * @file stm32f4xx_cryp.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the Cryptographic * processor(CRYP) f...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h
C
lgpl
12,528
/** ****************************************************************************** * @file stm32f4xx_spi.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the SPI * firmware library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h
C
lgpl
20,649
/** ****************************************************************************** * @file stm32f4xx_dma.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the DMA firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h
C
lgpl
28,750
/** ****************************************************************************** * @file stm32f4xx_can.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the CAN firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h
C
lgpl
27,186
/** ****************************************************************************** * @file stm32f4xx_rtc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the RTC firmware * library. *******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h
C
lgpl
40,414
/** ****************************************************************************** * @file stm32f4xx_tim.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the TIM firmware * library. ******...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h
C
lgpl
51,557
/** ****************************************************************************** * @file stm32f4xx_dbgmcu.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the DBGMCU firmware library. ***************...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h
C
lgpl
4,164
/** ****************************************************************************** * @file stm32f4xx_fsmc.h * @author MCD Application Team * @version V1.0.0RC1 * @date 25-August-2011 * @brief This file contains all the functions prototypes for the FSMC firmware * library. ****...
1137519-player
lib/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h
C
lgpl
27,044
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head> <met...
1137519-player
lib/STM32_USB_OTG_Driver/Release_Notes.html
HTML
lgpl
39,358
/** ****************************************************************************** * @file usb_core.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief USB-OTG Core Layer ****************************************************************************** * @atten...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_core.c
C
lgpl
59,943
/** ****************************************************************************** * @file usb_hcd_int.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Host driver interrupt subroutines ************************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_hcd_int.c
C
lgpl
22,145
/** ****************************************************************************** * @file usb_dcd.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Peripheral Device Interface Layer ****************************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_dcd.c
C
lgpl
9,774
/** ****************************************************************************** * @file usb_hcd.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Host Interface Layer ****************************************************************************** * @atte...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_hcd.c
C
lgpl
5,877
/** ****************************************************************************** * @file usb_otg.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief OTG Core Layer ****************************************************************************** * @attention ...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_otg.c
C
lgpl
3,691
/** ****************************************************************************** * @file usb_bsp.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief This file is responsible to offer board support package and is * configurable by user. ***********...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_bsp_template.c
C
lgpl
3,733
/** ****************************************************************************** * @file usb_dcd_int.c * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Peripheral Device interrupt subroutines ******************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/src/usb_dcd_int.c
C
lgpl
22,865
/** ****************************************************************************** * @file usb_hcd.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Host layer Header file ****************************************************************************** * @at...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_hcd.h
C
lgpl
2,799
/** ****************************************************************************** * @file usb_regs.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief hardware registers ****************************************************************************** * @atten...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_regs.h
C
lgpl
23,030
/** ****************************************************************************** * @file usb_bsp.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Specific api's relative to the used hardware platform ********************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_bsp.h
C
lgpl
2,343
/** ****************************************************************************** * @file usb_dcd_int.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Peripheral Device Interface Layer ************************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_dcd_int.h
C
lgpl
3,096
/** ****************************************************************************** * @file usb_conf.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief general low level driver configuration **********************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_conf_template.h
C
lgpl
9,626
/** ****************************************************************************** * @file usb_otg.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief OTG Core Header ****************************************************************************** * @attention...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_otg.h
C
lgpl
2,050
/** ****************************************************************************** * @file usb_dcd.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Peripheral Driver Header file ****************************************************************************** ...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_dcd.h
C
lgpl
4,612
/** ****************************************************************************** * @file usb_core.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Header of the Core Layer ****************************************************************************** * ...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_core.h
C
lgpl
12,737
/** ****************************************************************************** * @file usb_defines.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Header of the Core Layer ****************************************************************************** ...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_defines.h
C
lgpl
6,826
/** ****************************************************************************** * @file usb_hcd_int.h * @author MCD Application Team * @version V2.0.0 * @date 22-July-2011 * @brief Peripheral Device Interface Layer ************************************************************************...
1137519-player
lib/STM32_USB_OTG_Driver/inc/usb_hcd_int.h
C
lgpl
3,485
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_common_tables.c * * Description: This file has com...
1137519-player
lib/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c
C
lgpl
5,055
SET TMP=C:\Temp SET TEMP=C:\Temp SET UVEXE=C:\Keil\UV4\UV4.EXE %UVEXE% -rb arm_cortexM0x_math.uvproj -t"DSP_Lib CM0 LE" -o"DSP_Lib CM0 LE.txt" %UVEXE% -rb arm_cortexM0x_math.uvproj -t"DSP_Lib CM0 BE" -o"DSP_Lib CM0 BE.txt" %UVEXE% -rb arm_cortexM3x_math.uvproj -t"DSP_Lib CM3 LE" -o"DSP_Lib CM3 LE.txt" %UVEX...
1137519-player
lib/CMSIS/DSP_Lib/Source/ARM/arm_cortexMx_math_Build.bat
Batchfile
lgpl
734
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_sub_q31.c * * Description: Q31 vector subtraction. ...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q31.c
C
lgpl
3,328
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_scale_q15.c * * Description: Multiplies a Q15 vector ...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q15.c
C
lgpl
4,504
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_negate_q7.c * * Description: Negates Q7 vectors. ...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q7.c
C
lgpl
3,334
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_offset_q15.c * * Description: Q15 vector offset. ...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q15.c
C
lgpl
3,508
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_scale_q31.c * * Description: Multiplies a Q31 vector ...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q31.c
C
lgpl
3,514
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_sub_f32.c * * Description: Floating-point vector subt...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_f32.c
C
lgpl
3,209
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_add_q31.c * * Description: Q31 vector addition. *...
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q31.c
C
lgpl
3,316