Thank you @pmario that is what am looking for. I have one tiddler created with a few contents. I want to export one of the contents as header file for software application(*.h). So, when I go to “More actions” -“export tiddler” I want to get header file exporter option. And the file should look like as follows:
/*******************************************************************************
File Generation Information:
Engineer : Personal information
Date : --/--/202-
Time : to be specified
Version : first draft
Datasheet : latest datasheet
Comments : Settings
PDM Ref : document number
Integrity Source Repository Configuration Information:
Name : $Id$
Version : $Revision$
Author : $Author$
Date : $Date$
State : $State$
Location : $ProjectName$
Baseline : $ProjectRevision$
******************************************************************************
Copy write statement
(C) company
*******************************************************************************/
#ifndef _PSU_HW_CFG_H_
#define _PSU_HW_CFG_H_
#include "Platform_Types.h"
#define PSU_REG_DEVCFG0 0x00 /* Device configuration 0 *R2) */
#define PSU_REG_DEVCFG1 0x01 /* Device configuration 1 *R0) */
#define PSU_REG_DEVCFG2 0x02 /* Device configuration 2 *R2) */
#define PSU_REG_PROTCFG 0x03 /* Protection register *R2) */
#define PSU_REG_SYSPCFG0 0x04 /* Protected System configuration request 0 *R1) */
#define PSU_REG_SYSPCFG1 0x05 /* Protected System configuration request 1 *R2) */
#define PSU_REG_WDCFG0 0x06 /* Protected Watchdog configuration request 0 *R2) */
#define PSU_REG_WDCFG1 0x07 /* Protected Watchdog configuration request 1 *R2) */
#define PSU_REG_FWDCFG 0x08 /* Protected Functional watchdog configuration request *R2) */
#define PSU_REG_WWDCFG0 0x09 /* Protected Window watchdog configuration request 0 *R2) */
#define PSU_REG_WWDCFG1 0x0A /* Protected Window watchdog configuration request 1 *R2) */
/*shortened by mario (admin)*/
#define PSU_REG_CONFIG_SIZE 40U
/* Power Supply Configuration */
#define PSU_REG_CONFIG_INITIALISER \
{ \
{PSU_REG_DEVCFG0 , 0x48}, \
{PSU_REG_DEVCFG1 , 0x01}, \
{PSU_REG_DEVCFG2 , 0x60}, \
{PSU_REG_SYSPCFG0 , 0x81}, \
{PSU_REG_SYSPCFG1 , 0x0C}, \
{PSU_REG_WDCFG0 , 0x68}, \
{PSU_REG_WDCFG1 , 0x0A}, \
/*shortened by mario (admin)*/
}
#endif