Skip to content
Permalink
ef90926259
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
215 lines (192 sloc) 7.7 KB
/******************************************************************************
* File Name: main.c
*
* Description: This is the source code for the Non-Blocking Flash Write using
* Interrupt PSoC 4 Application for ModusToolbox.
*
* Related Document: See README.md
*
*
*******************************************************************************
* Copyright 2023, Cypress Semiconductor Corporation (an Infineon company) or
* an affiliate of Cypress Semiconductor Corporation. All rights reserved.
*
* This software, including source code, documentation and related
* materials ("Software") is owned by Cypress Semiconductor Corporation
* or one of its affiliates ("Cypress") and is protected by and subject to
* worldwide patent protection (United States and foreign),
* United States copyright laws and international treaty provisions.
* Therefore, you may use this Software only as provided in the license
* agreement accompanying the software package from which you
* obtained this Software ("EULA").
* If no EULA applies, Cypress hereby grants you a personal, non-exclusive,
* non-transferable license to copy, modify, and compile the Software
* source code solely for use in connection with Cypress's
* integrated circuit products. Any reproduction, modification, translation,
* compilation, or representation of this Software except as specified
* above is prohibited without the express written permission of Cypress.
*
* Disclaimer: THIS SOFTWARE IS PROVIDED AS-IS, WITH NO WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, NONINFRINGEMENT, IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress
* reserves the right to make changes to the Software without notice. Cypress
* does not assume any liability arising out of the application or use of the
* Software or any product or circuit described in the Software. Cypress does
* not authorize its products for use in any products where a malfunction or
* failure of the Cypress product may reasonably be expected to result in
* significant property damage, injury or death ("High Risk Product"). By
* including Cypress's product in a High Risk Product, the manufacturer
* of such system or application assumes all risk of such use and in doing
* so agrees to indemnify Cypress against all liability.
*******************************************************************************/
/*******************************************************************************
* Include Header files
*******************************************************************************/
#include "cy_pdl.h"
#include "cybsp.h"
/*******************************************************************************
* Macros and Constants
********************************************************************************/
/* Set this macro to '1' to observe the failure case of flash write. A RAM
* address is passed as row address argument to the flash write function instead
* of a flash address causing the function to return error.
*/
#define MAKE_FLASH_WRITE_FAIL (0u)
/* Check MCU datasheet to get flash size. 
* Flash Row starts with 0, for e.x Row0, Row1...RowN-1.
* Last Row = RowN - 1
*/
#define LAST_FLASH_ROW (CY_FLASH_NUMBER_ROWS-1)
/* This array reserves space in the flash for one row of size CY_FLASH_SIZEOF_ROW.
* Explicit initialization is required so that memory is allocated in flash
* instead of RAM.
*/
#define CALCULATE_FLASH_ADDRESS(rowNum) \
(CY_FLASH_BASE + ((rowNum) * CY_FLASH_SIZEOF_ROW))
/* CY_ALIGN ensures that the array address is an integer multiple of the row
* size so that the array occupies one complete row.
*/
CY_ALIGN(CY_FLASH_SIZEOF_ROW)
#if (MAKE_FLASH_WRITE_FAIL == 0)
/* Make the address point to last user flash row */
const uint8_t *flash_data = (uint8_t *)CALCULATE_FLASH_ADDRESS(LAST_FLASH_ROW);
#else
/* Make the address point to some RAM location */
const uint8_t *flash_data = (uint8_t *)CY_SRAM_BASE;
#endif /* #if(MAKE_FLASH_WRITE_FAIL == 0) */
/*******************************************************************************
* Global Variables
********************************************************************************/
/* Store number of the Flash interrupts */
volatile uint32_t count = 0u;
/******************************************************************************
* Flash interrupt configuration structure
*******************************************************************************/
cy_stc_sysint_t int_cfg = {
.intrSrc = cpuss_interrupt_spcif_IRQn, /* Interrupt Source*/
.intrPriority = 0u /* Interrupt Priority*/
};
/*******************************************************************************
* Function Name: Flash ISR
********************************************************************************
* Summary: Flash interrupt service routine. This function does the following:
* 1. Call Cy_Flash_ResumeWrite().
* 2. Increments count.
*
* Parameters:
* void
*
* Return
* void
*
*******************************************************************************/
void flash_isr(void)
{
(void) Cy_Flash_ResumeWrite();
count++;
}
/*******************************************************************************
* Function Name: main
********************************************************************************
* Summary:
* System entrance point. This function performs.
* 1. Initializes the BSP.
* 2. Initializes the data into RAM that will be later written into flash.
* 3. Writes the data into flash.
* 4. Verifies the data written into flash by comparing it with the RAM data.
* 5. Turns the LED1 ON if the flash write is successful otherwise turns the
* LED2 ON.
*
* Parameters:
* void
*
* Return:
* int
*
*******************************************************************************/
int main(void)
{
cy_rslt_t result;
uint32_t index;
cy_en_flashdrv_status_t flash_write_status;
uint8_t ram_data[CY_FLASH_SIZEOF_ROW];
bool error_flag = false;
/* Initialize the device and board peripherals */
result = cybsp_init();
if (result != CY_RSLT_SUCCESS)
{
CY_ASSERT(0);
}
/* Initialize the data in RAM that will be written into flash */
for (index = 0; index < CY_FLASH_SIZEOF_ROW; index++)
{
ram_data[index] = (uint8_t)index;
}
/* Configure Flash interrupt */
Cy_SysInt_Init(&int_cfg, &flash_isr);
NVIC_EnableIRQ(int_cfg.intrSrc);
/* Enable global interrupts */
__enable_irq();
/* Non-blocking flash write */
flash_write_status = Cy_Flash_StartWrite((uint32_t)flash_data, (const uint32_t *)ram_data);
if (flash_write_status == CY_FLASH_DRV_OPERATION_STARTED)
{
while (count < 3u)
{
// Wait for Cy_Flash_ResumeWrite() to be called 3 times.
}
if (Cy_Flash_IsOperationComplete() != CY_FLASH_DRV_SUCCESS)
{
error_flag = true;
}
else
{
/* Verify the data written into flash by comparing it with the RAM data */
if (memcmp(ram_data, flash_data, CY_FLASH_SIZEOF_ROW) != 0u)
{
error_flag = true;
}
}
}
else /* flash write operation did not start */
{
/* Flag error if the Cy_Flash_StartWrite API status is not as expected */
error_flag = true;
}
if (error_flag)
{
/* Turn the failure/LED2 ON */
Cy_GPIO_Clr(LED_ERROR_PORT, LED_ERROR_NUM);
}
else
{
/* Turn the successful/LED1 ON */
Cy_GPIO_Clr(LED_OK_PORT, LED_OK_NUM);
}
for (;;)
{
/* Put the CPU into Sleep mode to save power */
Cy_SysPm_CpuEnterSleep();
}
}
/* [] END OF FILE */