Jordan McLeod

Results 6 comments of Jordan McLeod

Relevant panda-rs issue: https://github.com/panda-re/panda-rs/issues/20 The current plan is just to use the same structure as pypanda's existing code but have it be in a JSON instead of a python literal,...

Instructions for trying hyperfuse/guest_shell today: ### Setup 1. Clone both `panda-re/panda` and `panda-re/igloo-internal` 2. Checkout the `linjector_base4` branch of panda 3. Checkout the `guest_agent` branch of igloo-internal 4. Set the...

```python @panda.ppp("linjector", "before_guest_inject") def linjector_finish(cpu): print("!!!! Injection finished !!!!") @panda.ppp("guest_plugin_manager", "on_guest_agent_load") def agent_loaded(cpu): print("!!!! Guest agent loaded !!!!") ``` Examples of the added PPP callbacks

#1118 has been merged, so that pypanda script should demonstrate the problematic behavior you're trying to demonstrate on head of the dev branch now, for anyone else who is running...

From what I can tell, it seems like this is an issue with `create_panda_datatypes.py` not discovering this callback due to not having any headers named accordingly (no `loaded_ppp.h`). So effectively--the...

When you say "bi-endian" are you referring to runtime-configurable byteorder (as I would interpret it) or fixed-endian systems which can be either ordering? As I feel like each of those...