Skip to content
Permalink
master
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
/*****************************************************************************
* File Name: config.h
*
* Description:
* Application configuration constants.
*
* Note:
*
******************************************************************************
* Copyright (2020), Cypress Semiconductor Corporation.
******************************************************************************
* This software is owned by Cypress Semiconductor Corporation (Cypress) and is
* protected by and subject to worldwide patent protection (United States and
* foreign), United States copyright laws and international treaty provisions.
* Cypress hereby grants to licensee a personal, non-exclusive, non-transferable
* license to copy, use, modify, create derivative works of, and compile the
* Cypress Source Code and derivative works for the sole purpose of creating
* custom software in support of licensee product to be used only in conjunction
* with a Cypress integrated circuit as specified in the applicable agreement.
* Any reproduction, modification, translation, compilation, or representation of
* this software except as specified above is prohibited without the express
* written permission of Cypress.
*
* Disclaimer: CYPRESS MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH
* REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
* Cypress reserves the right to make changes without further notice to the
* materials described herein. Cypress does not assume any liability arising out
* of the application or use of any product or circuit described herein. Cypress
* does not authorize its products for use as critical components in life-support
* systems where a malfunction or failure may reasonably be expected to result in
* significant injury to the user. The inclusion of Cypress' product in a life-
* support systems application implies that the manufacturer assumes all risk of
* such use and in doing so indemnifies Cypress against all charges. Use may be
* limited by and subject to the applicable Cypress software license agreement.
*****************************************************************************/
#ifndef CONFIG_H_
#define CONFIG_H_
/*******************************************************************************
* Configuration Constants
********************************************************************************/
/* Size of the LOG file. Must be power of 2 and at least 512 bytes */
#define CONFIG_LOG_FILE_SIZE 1024u
/* Name of the LOG file. Must have 8 characters and no special characters.
* If the name has less than 8 characters, fill it up with spaces */
#define CONFIG_LOG_FILE_NAME "LOG "
/* Extension of the LOG file. Must have 3 characters */
#define CONFIG_LOG_FILE_EXTENSION "TXT"
/* Name of the Mass Storage Drive. Must have 8 characters and no special characters.
* If the name has less than 8 characters, fill it up with spaces */
#define CONFIG_DRIVE_NAME "PSoC Logger"
/* Initial Log message in the LOG file. If not used, comment the line below.
* Limited to the size of the LOG file */
#define CONFIG_LOG_MESSAGE "PSoC Logger Content:\r\n"
#endif /* CONFIG_H_ */