.
This commit is contained in:
@@ -1018,7 +1018,7 @@ void
|
|||||||
FaultSource_Display();
|
FaultSource_Display();
|
||||||
|
|
||||||
|
|
||||||
static inline
|
static inline void
|
||||||
WordBitFaultSet( const uint32_t ErrorMark,
|
WordBitFaultSet( const uint32_t ErrorMark,
|
||||||
const double dScore,
|
const double dScore,
|
||||||
const def_eFaultSource eFaultSourceL,
|
const def_eFaultSource eFaultSourceL,
|
||||||
|
|||||||
8
main.c
8
main.c
@@ -65,7 +65,7 @@ const char szHelp[] =
|
|||||||
|
|
||||||
|
|
||||||
def_sOptions sOptions = {
|
def_sOptions sOptions = {
|
||||||
.ucLogLevel = E_LOGLEVEL__WARNING,
|
.eLogLevel = E_LOGLEVEL__WARNING,
|
||||||
.bLogStdOut = 1,
|
.bLogStdOut = 1,
|
||||||
.szLogFileName = {0},
|
.szLogFileName = {0},
|
||||||
.szTSVFile = {0},
|
.szTSVFile = {0},
|
||||||
@@ -120,10 +120,10 @@ int main(int argc, char **argv)
|
|||||||
*/
|
*/
|
||||||
sstregs = (SstRegs *) sst;
|
sstregs = (SstRegs *) sst;
|
||||||
|
|
||||||
printf("FBI Memory: %d MB\n", devInfo.fbiMemSize);
|
printf("FBI Memory: %lu MB\n", devInfo.fbiMemSize);
|
||||||
for (int tmu = 0; tmu < devInfo.numberTmus; tmu++)
|
for (int tmu = 0; tmu < devInfo.numberTmus; tmu++)
|
||||||
{
|
{
|
||||||
printf("TMU %d RAM: %d MB\n", tmu, devInfo.tmuMemSize[tmu]);
|
printf("TMU %d RAM: %lu MB\n", tmu, devInfo.tmuMemSize[tmu]);
|
||||||
}
|
}
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
|
|
||||||
@@ -138,7 +138,7 @@ int main(int argc, char **argv)
|
|||||||
//devInfo.tmuMemSize[1]==1;
|
//devInfo.tmuMemSize[1]==1;
|
||||||
for (int tmu = 0; tmu < devInfo.numberTmus; tmu++)
|
for (int tmu = 0; tmu < devInfo.numberTmus; tmu++)
|
||||||
{
|
{
|
||||||
printf("Testing Board %d, TMU %d, %dMB \n\n",boardNum,tmu,devInfo.tmuMemSize[tmu]);
|
printf("Testing Board %d, TMU %d, %luMB \n\n",boardNum,tmu,devInfo.tmuMemSize[tmu]);
|
||||||
|
|
||||||
puts("# address & control lines test - cumulated");
|
puts("# address & control lines test - cumulated");
|
||||||
for(int j=0;j<100;j++)
|
for(int j=0;j<100;j++)
|
||||||
|
|||||||
Reference in New Issue
Block a user