* Hey. Maybe somebody can help me debugging this: I successfully made a rust program using / demonstrating the OCTOSPI on a STMH730. Now I wanted to make this into a flash algorithm. The same initialization that works on the stand alone program: ``` let dp = pac::Peripherals::take().unwrap(); let pwr = dp.PWR.constrain(); let pwrcfg = pwr.freeze(); let rcc = dp.RCC.constrain(); let ccdr = rcc.sys_ck(64.MHz()).freeze(pwrcfg, &dp.SYSCFG); ``` gets stuck on this last line, when freezing the clock, when put into the `new()` function of the [flash-algorithm-template](https://github.com/probe-rs/flash-algorithm-template) and run with `target-gen test`. I tried several different frequencies, but no avail, the prgram simply stops on that last line.