Serge Vakulenko

Results 64 comments of Serge Vakulenko

Fixed in https://github.com/sergev/baoclone/commit/7a5375d03ee69784e349873b0a03bbf509b62f10.

I believe I fixed the issue with latest UV-5R firmware, including F8HP. Also newer BF-888S model is now properly recognized.

Thank you for positive feedback. You can add a progress gauge yourself: take a look at /usr/local/etc/bash_commander script. It contains definitions of functions, invoked when F1-F10 keys are pressed. On...

Merged into a separate branch: https://github.com/sergev/pic32prog/tree/serial-dtr Need to check it on Windows.

Hi Craig @cratuki, Thank you for bug reports. Could you please prepare a pull request to fix all these build issues? Rebasing to latest QEMU seems too complicated. I'm not...

You are welcome, Alejandro! Hex file with a boot loader is needed only when simulating boards, which have a bootloader. Say, MEB-II board has no bootloader. Here is an example...

Hi Alejandro, LBUX is a DSP instruction. It's a part of DSP extension for MIPS architecture. You can find a specification here: [MD00374-2B-MIPS32DSP-AFP-03.01.pdf](https://s3-eu-west-1.amazonaws.com/downloads-mips/documents/MD00374-2B-MIPS32DSP-AFP-03.01.pdf). See page 129. QEMU supports DSP extension,...

Your `qemu-pic32` binary was probably built before the `-d instr` option was added. Please update: ``` cd qemu git pull make cp mipsel-softmmu/qemu-system-mipsel ~/.local/bin/qemu-pic32 ``` After that you should see...

I debugged your hex file - it works correctly from the hardware point of view, but probably not what you expect. 😀 (1) First of all, your program is compiled...

Adding a new board is (relatively) easy. Look for BOARD_EXPLORER16 in file `hw/mips/mips_pic32mz.c`. You need to add a similar identifier for the new board, for example BOARD_CURIOSITY_EF. Routine `pic32_init()` has...