├── README.md ├── doc └── STM32F4_Discovery_Arduino.PNG └── examples ├── AccelerometerControlsSound ├── AccelerometerControlsSound.ino ├── BufferPlayer.cpp ├── BufferPlayer.h ├── CS43L22_STM32.cpp ├── CS43L22_STM32.h ├── LIS3DSx.cpp ├── LIS3DSx.h ├── wavetables.c └── wavetables.h ├── AudioBufferPlayer_sineWave ├── AudioBufferPlayer_sineWave.ino ├── BufferPlayer.cpp ├── BufferPlayer.h ├── CS43L22_STM32.cpp └── CS43L22_STM32.h ├── LIS3DSx_Accelerometer ├── LIS3DSx.cpp ├── LIS3DSx.h └── LIS3DSx_Accelerometer.ino └── MicrophonePlayBack ├── BufferPlayer.cpp ├── BufferPlayer.h ├── CS43L22_STM32.cpp ├── CS43L22_STM32.h ├── Microphone.cpp ├── Microphone.h └── MicrophonePlayBack.ino /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/README.md -------------------------------------------------------------------------------- /doc/STM32F4_Discovery_Arduino.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/doc/STM32F4_Discovery_Arduino.PNG -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/AccelerometerControlsSound.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/AccelerometerControlsSound.ino -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/BufferPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/BufferPlayer.cpp -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/BufferPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/BufferPlayer.h -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/CS43L22_STM32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/CS43L22_STM32.cpp -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/CS43L22_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/CS43L22_STM32.h -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/LIS3DSx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/LIS3DSx.cpp -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/LIS3DSx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/LIS3DSx.h -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/wavetables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/wavetables.c -------------------------------------------------------------------------------- /examples/AccelerometerControlsSound/wavetables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AccelerometerControlsSound/wavetables.h -------------------------------------------------------------------------------- /examples/AudioBufferPlayer_sineWave/AudioBufferPlayer_sineWave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AudioBufferPlayer_sineWave/AudioBufferPlayer_sineWave.ino -------------------------------------------------------------------------------- /examples/AudioBufferPlayer_sineWave/BufferPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AudioBufferPlayer_sineWave/BufferPlayer.cpp -------------------------------------------------------------------------------- /examples/AudioBufferPlayer_sineWave/BufferPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AudioBufferPlayer_sineWave/BufferPlayer.h -------------------------------------------------------------------------------- /examples/AudioBufferPlayer_sineWave/CS43L22_STM32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AudioBufferPlayer_sineWave/CS43L22_STM32.cpp -------------------------------------------------------------------------------- /examples/AudioBufferPlayer_sineWave/CS43L22_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/AudioBufferPlayer_sineWave/CS43L22_STM32.h -------------------------------------------------------------------------------- /examples/LIS3DSx_Accelerometer/LIS3DSx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/LIS3DSx_Accelerometer/LIS3DSx.cpp -------------------------------------------------------------------------------- /examples/LIS3DSx_Accelerometer/LIS3DSx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/LIS3DSx_Accelerometer/LIS3DSx.h -------------------------------------------------------------------------------- /examples/LIS3DSx_Accelerometer/LIS3DSx_Accelerometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/LIS3DSx_Accelerometer/LIS3DSx_Accelerometer.ino -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/BufferPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/BufferPlayer.cpp -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/BufferPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/BufferPlayer.h -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/CS43L22_STM32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/CS43L22_STM32.cpp -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/CS43L22_STM32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/CS43L22_STM32.h -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/Microphone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/Microphone.cpp -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/Microphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/Microphone.h -------------------------------------------------------------------------------- /examples/MicrophonePlayBack/MicrophonePlayBack.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/Arduino_STM32F4_Discovery/HEAD/examples/MicrophonePlayBack/MicrophonePlayBack.ino --------------------------------------------------------------------------------