Overview Features Coding ApolloOS Performance Forum Downloads Products Order Contact

Welcome to the Apollo Forum

This forum is for people interested in the APOLLO CPU.
Please read the forum usage manual.
Please visit our Apollo-Discord Server for support.



All TopicsNewsPerformanceGamesDemosApolloVampireAROSWorkbenchATARIReleases

VampireTools

Philippe Flype
(Apollo Team Member)
Posts 299
04 Apr 2016 09:04


We are happy to share you some new tools to read your Core Revision from CLI and also your unique Vampire Serial Number.

Take them here :

EXTERNAL LINK 
---

You can put them in C: or where you want.

>C:VampireCheck
>C:VampireCore
>C:VampireSerial



Philippe Flype
(Apollo Team Member)
Posts 299
04 Apr 2016 09:06


VampireCheck
 
  It doesn't output anything ; except $RC.
  If $RC = 0, then Vampire board is detected.
  If $RC != 0, then Vampire board is NOT detected.
 

>C:VampireCheck
>echo $RC

0

-----------------------

VampireCore
 
Outputs your current Core Revision.
 

>VampireCore

Vampire V600-128 Apollo rev 3179 x11 c7y (silver3)


 
-----------------------
 
VampireSerial
 
Outputs your Vampire unique Serial Number. Last digit is CRC check.
 
>VampireSerial

0x26F0A280C118B206-4




Philippe Flype
(Apollo Team Member)
Posts 299
07 May 2016 23:15


Just quick info, the VampireTool has been updated to a All-In-One binary (VampireTool 1.02) and it is packaged in the current SILVER5 archive (In C/).
 
New syntax are :
 

# VampireTool help    -- This help.
# VampireTool check    -- Check if Board present.
# VampireTool core    -- Output Core revision String.
# VampireTool corerev  -- Output Core revision Number.
# VampireTool serial  -- Output Board Serial Number.

Pick it here :

EXTERNAL LINK 

Examples of use :


;----------------------------------

VampireTool HELP

VampireTool CORE >ENV:Core
VampireTool COREREV >ENV:CoreRev
VampireTool SERIAL >ENV:Serial

Echo "Core:  " $Core
Echo "CoreRev:" $CoreRev
Echo "Serial: " $Serial

;----------------------------------

VampireTool CHECK

IF $RC EQ 0
  ECHO "Vampire detected."
ELSE
  ECHO "Vampire NOT detected."
ENDIF

;----------------------------------

VampireTool CHECK

IF $RC GT 0
  ECHO "Vampire NOT detected."
ELSE
  ECHO "Vampire detected."
ENDIF

;----------------------------------

VampireTool CHECK

IF WARN
  ECHO "Vampire NOT detected."
ELSE
  ECHO "Vampire detected."
ENDIF

;----------------------------------

VampireTool CHECK

IF NOT WARN
  ECHO "Vampire detected."
ELSE
  ECHO "Vampire NOT detected."
ENDIF

;----------------------------------



posts 3