Code Monkey home page Code Monkey logo

Comments (5)

stevearc avatar stevearc commented on May 22, 2024

Do you mean a command to manually specify the baud rate? Because that's done by simply setting let g:arduino_serial_baud = 9600

vim-arduino/doc/arduino.txt

Lines 104 to 106 in 1a4fd15

*'g:arduino_serial_baud'*
The baud rate to use for the debugging serial connection. >
let g:arduino_serial_baud = 9600

Or do you mean a command to do the automatic baud rate detection on the current file? There's no command for that currently but you could easily map the function call

if g:arduino_auto_baud
au BufReadPost,BufWritePost *.ino call arduino#SetAutoBaud()
endif

from vim-arduino.

mroavi avatar mroavi commented on May 22, 2024

Mmm... I mean a command of this type:

The main commands you will want to use are:

:ArduinoChooseBoard - Select the type of board from a list.
:ArduinoChooseProgrammer - Select the programmer from a list.
:ArduinoChoosePort - Select the serial port from a list.
:ArduinoVerify - Build the sketch.
:ArduinoUpload - Build and upload the sketch.
:ArduinoSerial - Connect to the board for debugging over a serial port.
:ArduinoUploadAndSerial - Build, upload, and connect for debugging.
:ArduinoInfo - Display internal information. Useful for debugging issues with vim-arduino.

So that I can invoke it with a key binding for convenience.

from vim-arduino.

stevearc avatar stevearc commented on May 22, 2024

It's still not clear to me if what you want to do with your keybinding is set the baud rate to a value or perform the auto detection.

Assuming it's the auto detection, you can already do that by calling the function arduino#SetAutoBaud()

nnoremap <buffer> <leader>b :call arduino#SetAutoBaud()<CR>

from vim-arduino.

mroavi avatar mroavi commented on May 22, 2024

I would like to have a command mapped to a key binding that has the exact same functionality as let g:arduino_serial_baud = 9600. I usually have several sketches open that use different debug serial baudrates, so it would be great to (1) be able to configure them with a mapping (and not having to look for my .vimrc, edit it, and source it) and 2. make this variable buffer specific, so that I could for example use 9600 with one sketch, and 115200 with another one.

from vim-arduino.

stevearc avatar stevearc commented on May 22, 2024

Gotcha! That's a pretty easy add

from vim-arduino.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.