PLATFORM defs

This commit is contained in:
Philippe Teuwen 2019-08-20 19:39:24 +02:00
parent 3f81b0b99d
commit 9535ce459e
2 changed files with 8 additions and 0 deletions

View file

@ -21,6 +21,8 @@ Known definitions:
+----------------------------------------------------------+
| PM3EVO | Proxmark3 EVO with AT91SAM7S512 |
+----------------------------------------------------------+
| PM3V40 | Proxmark3 V4.0 with AT91SAM7S512 |
+----------------------------------------------------------+
| PM3EASY | Proxmark3 rdv3 Easy with AT91SAM7S256 |
+----------------------------------------------------------+
| PM3EASY512 | Proxmark3 rdv3 Easy with AT91SAM7S512 |
@ -72,6 +74,9 @@ ifeq ($(PLATFORM),PM3RDV4)
else ifeq ($(PLATFORM),PM3EVO)
MCU = AT91SAM7S512
PLTNAME = Proxmark3 EVO
else ifeq ($(PLATFORM),PM3V40)
MCU = AT91SAM7S512
PLTNAME = Proxmark3 V4.0
else ifeq ($(PLATFORM),PM3EASY)
MCU = AT91SAM7S256
PLTNAME = Proxmark3 rdv3 Easy

View file

@ -32,6 +32,7 @@ Here are the supported values you can assign to `PLATFORM` in `Makefile.platform
|-----------------|----------------------------------------|
| PM3RDV4 (def) | Proxmark3 rdv4 with AT91SAM7S512 |
| PM3EVO | Proxmark3 EVO with AT91SAM7S512 |
| PM3V40 | Proxmark3 V4.0 with AT91SAM7S512 |
| PM3EASY | Proxmark3 rdv3 Easy with AT91SAM7S256 |
| PM3EASY512 | Proxmark3 rdv3 Easy with AT91SAM7S512 |
| PM3RDV2 | Proxmark3 rdv2 with AT91SAM7S512 |
@ -40,6 +41,8 @@ Here are the supported values you can assign to `PLATFORM` in `Makefile.platform
By default `PLATFORM=PM3RDV4`.
Note that besides `PM3RDV4` and its unique features, all other platforms are equivalent and the MCU version (256 or 512) will be detected automatically during flashing.
Known issues:
* 256kb Arm chip devices: The compiled firmware image from this repo may/will be too large for your device.