local.lnt

来自「针对日本瑞莎单片机r8c/23系列开发的LIN网络开发编程」· LNT 代码 · 共 50 行

LNT
50
字号
//-w0 	//No messages (except for fatal errors)
//-w1 	//Error messages only -- no Warnings or Informationals.
//-w2 	//Error and Warning messages only
-w3 	//Error, Warning and Informational messages (this is the default)
//-w4 	//All messages

//-i../common
//-D__M16C__=1

//controls the number of passes lint makes over the source code. The default is 1.
-passes(1)

// tab is 4 spaces
-t4

// Turn off strong type checking
-strong()

// Doesn't like while(1) loops.  NOTE: They want me to use for(;;) instead, but I think that's that stupid.
-e716

//Warning 620: Suspicious constant (L or one?)
-e620

//local typedef 'uint16' (line 53, file main_lin_master.c) not referenced
-e751
//Info 830: Location cited in prior message
-e830



//Not used =========================================================
// Ignoring return value of function 'Symbol'
    //-e534

// Suspicious pointer-to-pointer conversion (area too small)
    //-e826

// Assignment to strong type 'Name' in context: Context
    //-e632

// Assignment from a strong type 'Name' in context: Context
    //-e633

// Redundantly declared symbol
    //-e762

// Pointer parameter could be declared as pointing to const
    //-e818

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?