Philpax
Philpax
Hey there! Not sure if I should open a new issue for this or not, but I figured this would be a good place to mention it: I'm using `egui_node_graph`...
Would like to echo this sentiment - I'm using the crate through a Git dependency for a project and am loving it :heart:
Hi, Sorry, I haven't worked on Borealis at all lately (busy with other stuff, unfortunately); that being said, this is an interesting issue. Can someone who's experiencing this issue please...
I've pushed up a commit that skips over non-PIIX4 adapters, but this might still fail if your system doesn't use PIIX4. Can you give it a shot and see what...
Ah yep, I've had a quick look. Based on Adam's research, I _think_ this should be as straight-forward as simply writing to the I801 or NCT67xx (after his patch), but...
Hi, Unfortunately, I haven't had much time to work on Borealis, so things have stagnated. You might have better luck with [CalcProgrammer1's OpenAuraSDK](https://gitlab.com/CalcProgrammer1/OpenAuraSDK), which has seen more active development.
Hi, Unfortunately, I haven't had much time to work on Borealis, so things have stagnated. You might have better luck with [CalcProgrammer1's OpenAuraSDK](https://gitlab.com/CalcProgrammer1/OpenAuraSDK), which has seen more active development.
Some RE on the Aura RAM code suggests that assigning addresses to the RAM sticks is a matter of `write_register_byte(0xF8, desired_addr - 0x70)` followed by `write_register_byte(0xF9, enable_command)` where `enable_command` is...
Temporarily worked around this by just attempting connection to everything `0x70..0x77`. It works, but it's not great and it also sacrifices granular control. I'll look into this another time.
Great concerns! You're absolutely right about silently ignoring the channel here potentially causing issues: ```cpp ConvertFrame((const uint8_t**)av_frame_->data, bool(data->is_stereo), raw_frame_.data()); // decoded_consumed_samples_ += kSamplesPerFrame; auto byte_count = kBytesPerFrameChannel is_stereo; assert_true(output_remaining_bytes >=...