We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
as a result of the assembler run, we have a symbol table (name -> offset). what we do not have (yet?) is type information.
if we had that, we could build a uctypes.struct to comfortably deal with the result (like x = ulp.name).
uctypes.struct
x = ulp.name
any other ideas?
The text was updated successfully, but these errors were encountered:
Until we have a prettier way like described above, direct memory access via machine.mem32 can be used, see there: https://github.com/ThomasWaldmann/py-esp32-ulp/blob/master/examples/counter.py
machine.mem32
Sorry, something went wrong.
No branches or pull requests
as a result of the assembler run, we have a symbol table (name -> offset).
what we do not have (yet?) is type information.
if we had that, we could build a
uctypes.struct
to comfortably deal with the result (likex = ulp.name
).any other ideas?
The text was updated successfully, but these errors were encountered: