BoardSpecific.h File Reference

Board Specific Support Functions: Definitions and Prototypes More...

#include <c6x.h>
#include <BoardSupport/inc/dm2dm642.h>
#include <csl.h>
#include <csl_cache.h>

Macros

#define COMMON_CODE_SECTION   ".commontext"
 
#define CHIP_DM642
 
#define INC_CPRINTF
 
#define INC_COMMON
 
#define INC_UART
 
#define INC_TIMER
 
#define CPRINTF_CCS_AVAILABLE   1
 
#define CPRINTF_UART_AVAILABLE   1
 
#define USE_UART_CONTROL   1
 
#define CPRINTF_DEFAULT_OUTPUT   CPRINTF_UART_OUTPUT /* UART outputs */
 
#define TIMER_HANDLER_FUNCTION   eventTimerHandler
 
#define SYSTEM_TIMER   TIMER_DEVANY
 
#define AckTimerInterrupt()
 
#define SYSTEM_TIMER_INT   10
 
#define TIMER_HANDLER_INTERRUPT   interrupt void TIMER_HANDLER_FUNCTION(void)
 
#define BLANK_REV   CPuts(" | |\r\n");
 
#define START_UP_MESSAGE(rev)
 
#define tpOutputFunc   tpOutputFunc
 
#define FTP_BUFFER_SIZE   0x20000 /* used in FTP client and server */
 
#define TCP_TX_PACKETS   64
 
#define TCP_SEND_BUFFER_SIZE   (TCP_MAX_PACKET_SIZE * TCP_TX_PACKETS)
 
#define KA_TIMEOUT(x)    ((x)*UINT32_C(120000))
 
#define FTP_SERVER_TIMEOUT   UINT32_C(50000000) /* used in FTP server */
 
#define CONNECT_TIMEOUT   UINT32_C(1000000) /* used in FTP client */
 
#define SMTP_CONNECT_TIMEOUT   UINT32_C(50000) /* used in SMTP */
 
#define SHUTDOWN_TIMEOUT   UINT32_C(10000) /* used in SMTP */
 
#define GET_CLOCK   DM2_dspGetClock()
 
#define ANIMATE_SYMBOLS_COUNT   4
 
#define ASSERT_UART()   if (h_Uart == NULL) prg_exit ("No UART handle error")
 

Typedefs

typedef int(* tpOutputFunc) (const char *format,...)
 

Functions

void BoardAppInit (uint32_t dsp_clock)
 board specific initialization More...
 
void BoardPeripheralInit (void)
 board specific peripheral initialization More...
 
void BoardPeripheralClose (void)
 close board specific peripherals More...
 
void BoardInitializeInterrupts (void)
 initialize interrupts More...
 
void BoardEnableInterrupts (void)
 global enable interrupts More...
 
void BoardDisableInterrupts (void)
 
void BoardDisableEDMA (void)
 
void link_status (uint8_t mode)
 link status change callback function More...
 
uint16_t monitor_link_status (tpOutputFunc pLog)
 monitor link status change More...
 
uint16_t monitor_ip_address (tpOutputFunc pLog)
 monitor IP assignment More...
 
int InitializeNetwork (uint16_t icmp_size)
 Initialize MAC, sockets and protocols. More...
 
int BoardUartInit (void)
 Initialize UART. More...
 
void BoardUartWriteString (const char *str)
 write string over UART More...
 
int BoardUartWriteFormattedString (const char *format,...)
 write formatted string over UART More...
 
int32_t BoardUartWriteChar (char c)
 write one character via the UART More...
 
int32_t BoardUartReadChar (char *c)
 read one character from the UART More...
 
char * BoardUartReadString (char *dst, size_t maxlen, uint32_t timeout, int32_t echo)
 read String from UART More...
 
int BoardInitializeTimer (uint32_t timer_clock, int port, uint32_t utime)
 Initialize timer. More...
 
void BoardPlugTimerHandler (int32_t cpuint, int port, void(*eventTimerHandler)(void))
 install timer interrupt handler More...
 
void BoardStartTimer (int port)
 start timer More...
 
void BoardStopTimer (int port)
 stop timer More...
 
void LED_init ()
 
void LED_off (unsigned int ledNum)
 
void LED_on (unsigned int ledNum)
 
void LED_toggle (unsigned int ledNum)
 
uint16_t LED_state (void)
 
void KEY_init (void)
 
int KEY_pressed (unsigned int keyNum)
 

Variables

Uint16 SystemTimerDev
 
uint32_t DspClock
 
uint32_t TimerClock
 
char module_str []
 
char sym_animate []
 
T_Handle h_Uart
 
char * printf_uart_str
 

Detailed Description

                          _         _             _
                       __| |    ___(_) ____ _ __ | |_
                      / _` |   / __| |/ _` | '_ \| __|
                     | (_| | _ \__ \ | (_| | | | | |_
                      \__,_|(_) ___/_|\__, |_| |_|\__|
                     Signalprocessing |___/ Technology
Author
D.SignT GmbH & Co. KG, Claus Hermbusche
Date
2019-06-04

Macro Definition Documentation

#define COMMON_CODE_SECTION   ".commontext"
#define CHIP_DM642
#define INC_CPRINTF

define available peripheralsinclude CPrintf defines: cprintf.h

#define INC_COMMON

include Common functions: Common.h

#define INC_UART

include UART IO support: uartio.h

#define INC_TIMER

include timer module: timer.h

#define CPRINTF_CCS_AVAILABLE   1

enable available CPrintf Outputs

#define CPRINTF_UART_AVAILABLE   1
#define USE_UART_CONTROL   1
#define TIMER_HANDLER_FUNCTION   eventTimerHandler

Timer handler function prototype for timer.c

#define SYSTEM_TIMER   TIMER_DEVANY

Timer port assignment available ports: 0 and 1 -1: let the CSL select the next free timer define TIMER_DEVANY (-1) define TIMER_DEV0 (0) define TIMER_DEV1 (1)

Examples:
Blocksend.c, Chat.c, DHCPTest.c, DNSTest.c, Echo.c, FTPClient.c, FTPServer.c, HTTPdynamic.c, HTTPjava.c, HTTPsimple.c, Multicast.c, NetTest.c, Ping.c, Ping2.c, PServer.c, Receive.c, Send.c, SMTP.c, SNTPTest.c, and Telnet.c.
#define AckTimerInterrupt ( )
#define TIMER_HANDLER_INTERRUPT   interrupt void TIMER_HANDLER_FUNCTION(void)
#define START_UP_MESSAGE (   rev)
Value:
CPuts (" ---------------------------------------------------------\r\n"); \
CPrintf (" | D.SignT GmbH & Co. KG %25s |\r\n", program_name); \
CPuts (" | |\r\n"); \
CPrintf (" | (c) %d D.SignT www.dsignt.de |\r\n",BUILD_YEAR); \
CPuts (" ---------------------------------------------------------\r\n"VT100_DEFAULT);
#define BUILD_YEAR
Definition: Common.h:129
char * program_name
Definition: FTPclient.c:131
#define VT100_DEFAULT
Definition: cprintf.h:150
#define VT100_BLUE
Definition: cprintf.h:146
#define CLRSCR
Definition: cprintf.h:164
int CPuts(const char *_ptr)
Definition: cprintf.c:399
Examples:
Blocksend.c, Chat.c, DHCPTest.c, DNSTest.c, Echo.c, FTPClient.c, FTPServer.c, HTTPdynamic.c, HTTPjava.c, HTTPsimple.c, Multicast.c, NetTest.c, Ping.c, Ping2.c, PServer.c, Receive.c, Send.c, SMTP.c, SNTPTest.c, and Telnet.c.
#define tpOutputFunc   tpOutputFunc
#define FTP_BUFFER_SIZE   0x20000 /* used in FTP client and server */
Examples:
FTPClient.c.
#define TCP_TX_PACKETS   64
#define TCP_SEND_BUFFER_SIZE   (TCP_MAX_PACKET_SIZE * TCP_TX_PACKETS)
Examples:
Blocksend.c.
#define KA_TIMEOUT (   x)    ((x)*UINT32_C(120000))
Examples:
Blocksend.c, and Echo.c.
#define FTP_SERVER_TIMEOUT   UINT32_C(50000000) /* used in FTP server */
Examples:
FTPServer.c.
#define CONNECT_TIMEOUT   UINT32_C(1000000) /* used in FTP client */
Examples:
FTPClient.c.
#define SMTP_CONNECT_TIMEOUT   UINT32_C(50000) /* used in SMTP */
Examples:
SMTP.c.
#define SHUTDOWN_TIMEOUT   UINT32_C(10000) /* used in SMTP */
Examples:
SMTP.c.
#define ASSERT_UART ( )    if (h_Uart == NULL) prg_exit ("No UART handle error")

UART check

Examples:
BoardSpecific.c.

Typedef Documentation

typedef int(* tpOutputFunc) (const char *format,...)

Message log function. E.g. printf() or CPrintf() Use with net_print_stat()

Function Documentation

void BoardAppInit ( uint32_t  dsp_clock)
Parameters
dsp_clock[Hz]
Returns
nothing

Make board specific settings. Store or determine configured clocks. Call further board specific initialization functions for e.g PLL, EMIF, XINTF and prepare interrupts.

232 {
233  /***************************************************************************
234  locals
235  ***************************************************************************/
236 
238 // BoardDisableEDMA();
239 
240  /***************************************************************************
241  store DSP clock
242  ***************************************************************************/
243  DspClock = dsp_clock;
244  TimerClock = dsp_clock>>3;
245 
246  /***************************************************************************
247  basic initialisation, call bios function init_module()
248  ***************************************************************************/
249  DM2_init();
250 
251  /***************************************************************************
252  initialize interrupt system
253  ***************************************************************************/
254 #if (!(defined(USE_DSPBIOS) || defined(USE_SYSBIOS)))
255 // DM2_intInit (&DM2_intServiceTable);
256 #endif
257 }
void BoardDisableInterrupts(void)
Definition: BoardSpecific.c:383
far void DM2_init(void)
uint32_t DspClock
Definition: BoardSpecific.c:122
uint32_t TimerClock
Definition: BoardSpecific.c:123
void BoardPeripheralInit ( void  )
Parameters
-
Returns
nothing
267 {
268  /***************************************************************************
269  initialize Chip Support Library
270  ***************************************************************************/
271  CSL_init();
272 
273  /***************************************************************************
274  make SDRAM cacheable
275  ***************************************************************************/
276  CACHE_enableCaching(CACHE_EMIFA_CE00);
277  CACHE_enableCaching(CACHE_EMIFA_CE01);
278  CACHE_enableCaching(CACHE_EMIFA_CE02);
279  CACHE_enableCaching(CACHE_EMIFA_CE03);
280 
281  /***************************************************************************
282  initialize FLASH
283  ***************************************************************************/
284  DM2_flashOpen();
285 #ifdef USE_SPIDRIVE
286 
287 
288  /***************************************************************************
289  configure GPIO2 (PRGIO[6]) as input for card detect signal
290  ***************************************************************************/
291  // ConfigureCardDetect (6);
292  ConfigureCardDetect (15);
293 #endif
294 
295 }
far size_t DM2_flashOpen(void)
void BoardPeripheralClose ( void  )
Parameters
-
Returns
nothing
305 {
306  /***************************************************************************
307  stop timer
308  ***************************************************************************/
309 #ifdef INC_TIMER
310  StopSystemTimer ();
311 #endif
312  //~ TIMER(0)->ctl = 0x301;
313  //~ TIMER_close (h_timer[0]);
314  //~ TIMER_close (h_timer[1]);
315  //~ TIMER_close (h_timer[2]);
316  //~ TIMER_resetAll();
317 
318  /***************************************************************************
319  disable interrupt
320  ***************************************************************************/
321  _disable_interrupts();
322 
323  /***************************************************************************
324  disable DMA
325  ***************************************************************************/
326  //...
327 
328  /***************************************************************************
329  close peripherals
330  ***************************************************************************/
331 #ifdef _UARTIO_H_
332  if (h_Uart) DM2_uartClose (h_Uart);
333 #endif
334 
335 #ifdef _USBIO_H_
336  DM2_usbClose();
337 #endif
338 
339 }
far void DM2_usbClose(void)
far int DM2_uartClose(T_Handle h_uart)
void StopSystemTimer(void)
stop system timer
Definition: timer.c:461
T_Handle h_Uart
void BoardInitializeInterrupts ( void  )
Parameters
-
Returns
nothing
349 {
350 #if (!(defined(USE_DSPBIOS) || defined(USE_SYSBIOS)))
351 // if (intcInit() != intcInit_OK) // required only once
352 // {
353 // prg_exit ("error");
354 // }
355 #endif
356 }
void BoardEnableInterrupts ( void  )
Parameters
-
Returns
nothing
Examples:
Blocksend.c, Chat.c, DHCPTest.c, DNSTest.c, Echo.c, FTPClient.c, FTPServer.c, HTTPdynamic.c, HTTPjava.c, HTTPsimple.c, Multicast.c, NetTest.c, Ping.c, Ping2.c, PServer.c, Receive.c, Send.c, SMTP.c, SNTPTest.c, and Telnet.c.
366 {
367  // DM2_intStart();
368  _enable_interrupts();
369 
370  /**************************************************************************
371  enable the bits for non maskable interrupt (0x02)
372  **************************************************************************/
373  IER |= 0x2;
374 }
void BoardDisableInterrupts ( void  )
384 {
385 
386  /***************************************************************************
387  clear CPU interrupts
388  ***************************************************************************/
389  IER = 0;
390  ICR = 0xFFFF;
391  CSR &= ~1;
392 
393 }
void BoardDisableEDMA ( void  )
403 {
404 // CSL_Edma3ccRegsOvly Edma3cc0Regs = (CSL_Edma3ccRegsOvly)CSL_EDMA3CC_0_REGS;
405 
406 // Edma3cc0Regs->IECR = 0xffffffff; // IER - Disable interrupts
407 // Edma3cc0Regs->EECR = 0xffffffff; // EER - Disable events
408 // Edma3cc0Regs->ICR = 0xffffffff; // ICR - Clear interrupts
409 // Edma3cc0Regs->ECR = 0xffffffff; // ICRH - Clear events
410 }
int InitializeNetwork ( uint16_t  icmp_size)
Parameters
icmp_size- space for ICMP (ping))
Returns
0 - success or >0 - error occurred
Examples:
Blocksend.c, Chat.c, DHCPTest.c, DNSTest.c, Echo.c, FTPClient.c, FTPServer.c, HTTPdynamic.c, HTTPjava.c, HTTPsimple.c, Multicast.c, NetTest.c, Ping.c, Ping2.c, PServer.c, Receive.c, Send.c, SMTP.c, SNTPTest.c, and Telnet.c.
598 {
599  /***************************************************************************
600  locals
601  ***************************************************************************/
602  uint16_t buffer[3];
603  char uid[6];
604  static uint32_t NetInitStatus = 0; // not initialized
605 
606 
607  if (NetInitStatus) return (0);
608 
609  /***************************************************************************
610  initialize DM642 EMAC
611  possible values
612  mode: FDX_100, FDX_10, HDX_100, HDX_10, AUTO_NEG
613  MAC Address
614  link_status: callback function or NULL
615  ***************************************************************************/
616  if ( !DM2_EmacInit (eth.mode, eth.mac, link_status) )
617  {
618 #ifdef EMAC_DETAIL
619  return (1);
620 #else
621  prg_exit ("\r\nDM2_EmacInit() function failed\r\nEthernet defect"); /* initialize EMAC error */
622 #endif
623  }
624 
625 
626  /***************************************************************************
627  in case of DHCP create unique network name
628  ***************************************************************************/
629  if (!((eth.ip[0]-'0')<=9))
630  {
631  /***********************************************************************
632  read internal MAC address
633  ***********************************************************************/
634  get_mac_address (0, buffer);
635 
636  if ( strlen(eth.ip) < (30-5) ) // check space for MAC ID
637  {
638  /*******************************************************************
639  append lower MAC address bits to module name for unique host name.
640  eth.ip is defined in netconfig.c as a 30 byte char array. Don't
641  use host names larger than 30 bytes or increase the array size.
642  *******************************************************************/
643  sprintf (uid, "-%04X", htons(buffer[2]));
644  strcat (eth.ip, uid);
645  }
646  else
647  {
648 #ifdef EMAC_DETAIL
649  return (2);
650 #else
651  prg_exit ("\r\nhostname too long"); /* initialize EMAC error */
652 #endif
653  }
654  }
655 
656  /***************************************************************************
657  init sockets
658  1. parameter: own IP address or own HOST_NAME
659  2. parameter: subnet mask
660  3. parameter: gateway address
661  4. parameter NULL - own IP address is valid
662  DHCP_ENABLE - IP comes from a DHCP Server
663  own HOST_NAME is valid
664  5. parameter DNS Server IP or NULL
665  6. parameter DNS_ENABLE or NULL
666  ***************************************************************************/
667  if ( !net_init (eth.ip,
669  eth.gateway,
671  eth.dns,
672  eth.dns_setting))
673  {
674 #ifdef EMAC_DETAIL
675  return (3);
676 #else
677  prg_exit ("net_init() failed"); /* out of memory, try to increase heap */
678 #endif
679  }
680 
681  /***************************************************************************
682  in case of DHCP reset IP address
683  ***************************************************************************/
684  if (!((eth.ip[0]-'0')<=9))
685  {
686  set_ip_address (0, "0.0.0.0");
687  }
688 
689  /***************************************************************************
690  install icmp socket (for ping)
691  ***************************************************************************/
692  if ( (icmp_so = install_icmp_socket (icmp_size)) == NULL)
693  {
694 #ifdef EMAC_DETAIL
695  return (4);
696 #else
697  prg_exit ("ICMP socket error"); /* possibly insufficient heap */
698 #endif
699  }
700 
701  NetInitStatus = 1; // network initialized
702 
703  /***************************************************************************
704  success
705  ***************************************************************************/
706  return (0);
707 }
#define prg_exit(s)
Definition: Common.h:267
char dns[16]
Definition: net.h:171
int32_t net_init(char *ip, char *subnet, char *gateway, uint32_t(*dhcp_func)(char *, uint16_t), char *dns, uint32_t(*dns_func)(void))
Main network initialization function.
char mac[18]
Definition: net.h:169
#define NULL
Definition: net.h:126
void * DM2_EmacInit(uint8_t mode, char *mac_addr_str, void(*link_status)(unsigned char))
Initialize EMAC module.
unsigned short uint16_t
Definition: stdint.h:45
char subnet_mask[16]
Definition: net.h:172
char gateway[16]
Definition: net.h:173
SOCKET * icmp_so
Definition: BoardSpecific.c:148
uint32_t(* dhcp_setting)(char *, uint16_t)
Definition: net.h:168
unsigned int uint32_t
Definition: stdint.h:47
static char buffer[100]
Definition: blocksend.c:158
uint8_t mode
Definition: net.h:174
void link_status(uint8_t mode)
link status change callback function
Definition: BoardSpecific.c:434
char ip[31]
Definition: net.h:170
uint32_t get_mac_address(uint16_t dev_nr, uint16_t *dest)
Get MAC address.
uint32_t(* dns_setting)(void)
Definition: net.h:167
adapter_t eth
Definition: netconfig.c:62
uint32_t set_ip_address(uint16_t dev_nr, char *addr_str)
Set IP address.
static uint16_t htons(uint16_t val)
Convert a short int from host to network byte order.
Definition: net.h:1890
SOCKET * install_icmp_socket(uint16_t size)
Install an ICMP socket for ping and messages.
int BoardUartInit ( void  )
Parameters
-
Returns
0 - success !0 - error
Examples:
BoardSpecific.c.
void BoardUartWriteString ( const char *  str)
Parameters
str- string to write
Returns
-
Examples:
BoardSpecific.c.
int BoardUartWriteFormattedString ( const char *  format,
  ... 
)
Parameters
format- format string to write
Returns
-
Examples:
BoardSpecific.c.
int32_t BoardUartWriteChar ( char  c)
Parameters
c- character to write
Returns
true (1) if successful, false (0) if transmitter not ready
Examples:
BoardSpecific.c.
int32_t BoardUartReadChar ( char *  c)
Parameters
c- pointer to character storage
Returns
true (1) if successful, false (0) if receiver empty
Examples:
BoardSpecific.c, and FTPClient.c.
char* BoardUartReadString ( char *  dst,
size_t  maxlen,
uint32_t  timeout,
int32_t  echo 
)
Parameters
dst- pointer to destination buffer
maxlen- maximum string length (size of destination buffer) in bytes
timeout- number of retries until data is received, 0 = no timeout
echo- echo received characters
Returns
pointer to destination buffer, 0 if timeout
Note
This function reads an ASCIIZ string from the UART. If a line end character (CR and/or LF)is received or maxcount is reached, a terminating 0 is appended and the function returns. Line end characters are skipped from the string. BACKSPACE deletes the previous character from the string. ESC terminates and returns an empty string.
all line end characters are accepted (CR, LF, CR+LF)
This function uses a global variable to store the last line end character - it is not re-entrant-safe
Echo requires a full-duplex UART line interface, not supported with RS485
This is a blocking function !
Examples:
BoardSpecific.c.
int BoardInitializeTimer ( uint32_t  timer_clock,
int  port,
uint32_t  utime 
)
Parameters
timer_clock- PLL configured clock speed (in MHz)
port- timer port
utime- desired timer frequency in u-seconds
Returns
false - success true - timer frequency not accessible
Examples:
BoardSpecific.c.
void BoardPlugTimerHandler ( int32_t  cpuint,
int  port,
void(*)(void)  eventTimerHandler 
)
Parameters
cpuint- CPU interrupt
port- timer port
eventTimerHandler- timer interrupt handler
Returns
-
Examples:
BoardSpecific.c.
void BoardStartTimer ( int  port)
Parameters
port- timer port
Returns
-
Examples:
BoardSpecific.c.
void BoardStopTimer ( int  port)
Parameters
port- timer port
Returns
-
Examples:
BoardSpecific.c.
void LED_init ( )

Function LED_init

Turn all LEDs off

Parameter Returns Calls

Examples:
Multicast.c.
1271 {
1272  ledstate = 0;
1273 }
static unsigned int ledstate
Definition: BoardSpecific.c:174
void LED_off ( unsigned int  ledNum)

Function LED_off

Parameter Returns Calls

Examples:
Blocksend.c, HTTPdynamic.c, HTTPjava.c, Multicast.c, and Send.c.
1285 {
1286  /* Check bounds for ledNum */
1287  if (ledNum >= 4)
1288  return;
1289  /* Clear the LED bit */
1290  ledstate &= ~(1 << ledNum);
1291 }
static unsigned int ledstate
Definition: BoardSpecific.c:174
void LED_on ( unsigned int  ledNum)

Function LED_on

Parameter Returns Calls

Examples:
Blocksend.c, HTTPdynamic.c, HTTPjava.c, Multicast.c, NetTest.c, Ping2.c, Send.c, and SNTPTest.c.
1303 {
1304  /* Check bounds for ledNum */
1305  if (ledNum >= 4)
1306  return;
1307  /* Set the LED bit */
1308  ledstate |= (1 << ledNum);
1309 }
static unsigned int ledstate
Definition: BoardSpecific.c:174
void LED_toggle ( unsigned int  ledNum)

Function LED_toggle

Parameter Returns Calls

Examples:
Ping2.c, Send.c, and SNTPTest.c.
1321 {
1322  unsigned int led_mask = 1 << (ledNum);
1323  /* Check bounds for ledNum */
1324  if (ledNum >= 4)
1325  return;
1326  /* Set the LED bit */
1327  if ( ledstate & led_mask )
1328  LED_off(ledNum);
1329  else
1330  LED_on(ledNum);
1331 }
void LED_on(unsigned int ledNum)
Definition: BoardSpecific.c:1302
void LED_off(unsigned int ledNum)
Definition: BoardSpecific.c:1284
static unsigned int ledstate
Definition: BoardSpecific.c:174
uint16_t LED_state ( void  )

Function LED_state

Parameter Returns Calls

Examples:
HTTPdynamic.c, and HTTPjava.c.
1343 {
1344  return (ledstate);
1345 }
static unsigned int ledstate
Definition: BoardSpecific.c:174
void KEY_init ( void  )

Function KEY_init

1359 {
1360  //~ keystate = 0;
1361  /***************************************************************************
1362  Initialize KEYs
1363  ***************************************************************************/
1364 }
int KEY_pressed ( unsigned int  keyNum)

Function KEY_pressed

Examples:
FTPClient.c.
1372 {
1373  UNREFERENCED_PARAMETER(keyNum);
1374  /* Check bounds for keyNum */
1375  //~ if ((keyNum >= SW1) && (keyNum <= SW0) )
1376  //~ return ( EZDSP5502_I2CGPIO_readLine (keyNum) == 0);
1377  //~ else
1378  return 0;
1379 
1380 }
#define UNREFERENCED_PARAMETER(P)
Definition: Common.h:115

Variable Documentation

uint32_t DspClock
uint32_t TimerClock
char module_str[]
Examples:
SMTP.c.
T_Handle h_Uart
Examples:
BoardSpecific.c.
char* printf_uart_str
Examples:
BoardSpecific.c.