Piroro-hs

Results 30 comments of Piroro-hs

`redirectUrl` should not have web protocols (http, https). It should be link inside the app. See [React Native docs](https://facebook.github.io/react-native/docs/linking.html) for more info.

That is strange. Could you share your `AndroidManifest.xml`?

React Native currently lacks `Blob` implementation, so getting an image from a url on the internet and posting that to a twitter is a little bit complicate work. First, we...

How about using Babel on the web-editor side? It works perfectly on modern browsers.

Updated to prepare `asm!` stabilization in 1.59. generated assembly ``` 08001178 : 8001178: 41 f2 04 00 movw r0, #4100 800117c: c4 f6 00 00 movt r0, #18432 8001180: 50...

Maybe simple counter based timeout (decrement the timeout counter value in `busy_wait!` loop and exit when the value reaches zero) is enough? At least this is what [ARM Mbed OS...

I've been toying around with gpio module to remove those `&mut gpioa.moder, &mut gpioa.afrl, ..` without Mutexes. Working branch is [here](https://github.com/Piroro-hs/stm32f3xx-hal/tree/gpio-unsafe). However I'm not sure this is legal or not🥴...

@mvirkkunen ST's "STM32 Cortex®-M4 MCUs and MPUs programming manual" (PM0214) said nothing about such restrictions, so I think peripheral memory space (device memory) is treated like normal memory in LDREX/STREX...

> In the ARMv7-M architecture reference manual, A3.4.5 "Load-Exclusive and Store-Exclusive usage restrictions", it says: > > > LDREX and STREX operations must be performed only on memory with the...

Looks like current PWM and Timer implementation is wrong at source clock calculation. https://github.com/stm32-rs/stm32f3xx-hal/blob/f8eb2926a38c9a40c41ba53de60839ac25d78f6e/src/pwm.rs#L283-L284