You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm working on a simple app for the STM32F3Discovery board. The target is thumbv7em-none-eabihf. I was able use SmallRng successfully, but the following code hangs forever when it gets to the refill_wide part in next_u32. I'm using Rust 1.46 and rand 0.7.3.
use rand::{RngCore,SeedableRng};use rand::rngs::StdRng;letmut rng = StdRng::seed_from_u64(0);
rng.next_u32();
The text was updated successfully, but these errors were encountered:
Hi, I'm working on a simple app for the STM32F3Discovery board. The target is
thumbv7em-none-eabihf
. I was able useSmallRng
successfully, but the following code hangs forever when it gets to therefill_wide
part innext_u32
. I'm using Rust 1.46 and rand 0.7.3.The text was updated successfully, but these errors were encountered: