Skip to content

Commit 5ce78b5

Browse files
committed
Fix issue with custom application defines
1 parent 5999c72 commit 5ce78b5

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

examples/X_NUCLEO_IKS02A1_Audio_Button/X_NUCLEO_IKS02A1_Audio_Button.ino

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#endif
77

88
#include "Arduino.h"
9-
#include "app_config.h"
109
#include "PDM.h"
1110
#include "pdm2pcm.h"
1211
#include "WaveEncoder.h"

examples/X_NUCLEO_IKS02A1_Audio_Button/app_config.h

-11
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef __APP_CONFIG_CUSTOM_H__
2+
#define __APP_CONFIG_CUSTOM_H__
3+
4+
/* Override the settings inside the library of the number of milliseconds per interrupt*/
5+
#ifndef N_MS_PER_INTERRUPT
6+
#define N_MS_PER_INTERRUPT (100)
7+
#endif /* N_MS_PER_INTERRUPT */
8+
9+
#endif /* __APP_CONFIG_CUSTOM_H__ */

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=STM32duino FP_Examples
2-
version=1.5.0
2+
version=1.5.1
33
author=STMicroelectronics
44
maintainer=stm32duino
55
sentence=Provides several Function Packs that combine the usage of several X-NUCLEO boards

0 commit comments

Comments
 (0)