Dear Stefano,
Esto es posible indirectamente pero cargando la data desde un archivo XML con el texto codificado en base64. Puede usar un conversor online para convertir de hexadecimal a base64: http://tomeko.net/online_tools/hex_to_base64.php?lang=en
Ejemplo de un archivo data.xml para modificar la memoria RO:
This is possible indirectly, loading the data from an XML file with the base64 encoded text. You can use an online converter to convert from hex to base64. Try http://tomeko.net/online_tools/hex_to_base64.php?lang=en
Example of a data.xml file to modify the memory RO:
- <?xml version="1.0" standalone="yes"?>
- <memories>
- <memory fileID="1" name="Read/Write Memory (HASP_FILEID_RW)">
- </memory>
- <memory fileID="2" name="Read-Only Memory (HASP_FILEID_RO)">
- <segments>
- <segment>
- <offset>0x0000</offset>
- <length>10</length>
- <color>#FF9900</color>
- <name>MyField1</name>
- <description>Field1 description</description>
- <free_memory>true</free_memory>
- <base64data>aBc6QzQ1T2hanQ==</base64data>
- </segment>
- <segment>
- <offset>0x000A</offset>
- <length>4</length>
- <color>#FFCCCC</color>
- <name>MyField2</name>
- <description>Field2 description</description>
- <free_memory>true</free_memory>
- <base64data>nXg6t8==</base64data>
- </segment>
- </segments>
- </memory>
- </memories>