Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_CCA02M1 ST_Events-old mbed
Fork of HelloWorld_CCA02M1 by
main.cpp
- Committer:
- Davidroid
- Date:
- 2017-05-02
- Revision:
- 7:760d8e527b67
- Parent:
- 0:7d07f4df31e1
- Child:
- 8:0dcb2485700e
File content as of revision 7:760d8e527b67:
/**
******************************************************************************
* @file main.cpp
* @author Davide Aliprandi, STMicroelectronics
* @version V1.0.0
* @date October 28th, 2016
* @brief mbed test application for the STMicroelectronics X-NUCLEO-CCA02M1
* MEMS Microphones Expansion Board.
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
/* mbed specific header files. */
#include "mbed.h"
#include "rtos.h"
#if DEVICE_I2S
/* Expansion Board specific header files. */
#include "XNucleoCCA02M1.h"
/* Variables -----------------------------------------------------------------*/
/*
* Initialization parameters.
* Note: put a jumper to connect PB_5 and PB_13 on the MORPHO connector when
* running a mono configuration.
*/
XNucleoCCA02M1_init_t init =
{
16000, /* Default Sampling Frequency [Hz]. */
2 /* Default number of channels. */
};
/* Thread to manage I2S peripherals. */
static rtos::Thread i2s_bh_daemon;
/* Functions -----------------------------------------------------------------*/
/**
* @brief Entry point function of mbedOS.
* @param None
* @retval None
*/
int main(void)
{
/*----- Initialization. -----*/
/* Initializing MEMS Microphones Expansion Board on the I2S1 interface. */
XNucleoCCA02M1 *microphones = new XNucleoCCA02M1(PB_15, PB_13);
if (microphones->init(&init) != COMPONENT_OK)
{
error("Initialization of the MEMS Microphones Expansion Board failed.\r\n");
exit(EXIT_FAILURE);
}
/* Starting a thread to manage I2S peripherals. */
Callback<void()> i2s_bh_task(&I2S::i2s_bh_queue, &events::EventQueue::dispatch_forever);
i2s_bh_daemon.start(i2s_bh_task);
/* Enabling transmission via USB. */
microphones->enable_usb();
/* Printing to the console. */
printf("MEMS Microphones Application Example\r\n\n");
/*----- Recording. -----*/
/* Printing to the console. */
printf("--> Recording...\r\n");
microphones->record();
}
#else // DEVICE_I2S
int main(void)
{
printf("The target does not support I2S API.\r\n");
}
#endif // DEVICE_I2S
