Kayo Phoenix

Results 55 issues of Kayo Phoenix

As I see you only use DMA interrupts to control serial transfer. This is not enough for correct operation. In case of receiving we should at least handle an idle...

As I understand currently only nightly Rust supported. Particularly, "union" feature of smallvec crate requires nightly Rust. Is it possible to support stable Rust soon? Which unstable features are strictly...

Since currently different alternatives to __jni__ crate can be used for interfacing with java runtime I propose avoid __jni__ wrappers in favor low level __jni-sys__ types.

I don't sure, this problem actually related to android-ndk-sys nor jni crate but it looks very strange for me. Also I don't quite familiar with JNI, so I may do...

I have failed when I tried to build it myself: ``` /home/builder/workspace/uefi/Emulator/X86EmulatorPkg/qemu/target-i386/op_helper.c: In function ‘helper_pcmpestrm_xmm’: /home/builder/workspace/uefi/Emulator/X86EmulatorPkg/qemu/target-i386/ops_sse.h:2002:35: error: iteration 2147483648 invokes undefined behavior [-Werror=aggressive-loop-optimizations] 2002 | for (i = 0; i...

I have a components which should be rendered asynchronously. For example, under first rendering it triggers data loading (using props) and returns progress. When data is available it invalidates component...

As I see, you access to `process.env` many-many times as here: ```typescript export const EVENT_DISPATCHER_ABORT = ( process.env.IVI_TARGET === "ssr" ? void 0 : /*#__PURE__*/createNativeEventDispatcher(NativeEventSourceFlags.Capture, "abort") ); export const EVENT_DISPATCHER_ACTIVATE...

In my previous experience with VDOM I creating isomorphic apps which attaches at root node of document (i.e. **html**). I suppose it should works in same way with ivi too....

Currently is this a missing feature? I see only `add_child ()` which likely insert children at end, and `set_children()` which reloads all children, also it has `replace_child_at_index()` but I want...