All Projects → probe-rs → vscode-legacy

probe-rs / vscode-legacy

Licence: other
A vscode plugin for probe-rs

Programming Languages

rust
11053 projects
typescript
32286 projects

Projects that are alternatives of or similar to vscode-legacy

emplea do
Open source tech jobs portal. Made with .Net Core
Stars: ✭ 75 (+316.67%)
Mutual labels:  visual-studio
wxWidgetsTemplate
A template project for wxWidgets C++, with pre-set files and IDE projects, and allows for easy updates to wxWidgets
Stars: ✭ 13 (-27.78%)
Mutual labels:  visual-studio
WindowsCommunityToolkit
The Windows Community Toolkit is a collection of helpers, extensions, and custom controls. It simplifies and demonstrates common developer tasks building UWP and .NET apps for Windows 10 and Windows 11. The toolkit is part of the .NET Foundation.
Stars: ✭ 4,934 (+27311.11%)
Mutual labels:  visual-studio
crynn
3D Game Engine Created In C++ & OpenGL
Stars: ✭ 45 (+150%)
Mutual labels:  visual-studio
botsfromzerotohero
This repository contains all the code samples of "Developing Intelligent Bots from Zero to Hero" channel9/MVA course.
Stars: ✭ 14 (-22.22%)
Mutual labels:  visual-studio
gnutls
Unofficial GnuTLS with added custom native Visual Studio project build tools. GnuTLS: GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them.
Stars: ✭ 17 (-5.56%)
Mutual labels:  visual-studio
swirc
Lightweight terminal based ICB and IRC client
Stars: ✭ 20 (+11.11%)
Mutual labels:  visual-studio
visual-studio-fonts
Workaround for missing Line Spacing feature in Visual Studio.
Stars: ✭ 18 (+0%)
Mutual labels:  visual-studio
dockingpanes
A Visual Studio style docking windows library for Qt Widgets based applications
Stars: ✭ 52 (+188.89%)
Mutual labels:  visual-studio
machine.specifications.runner.visualstudio
A test adapter for Visual Studio and dotnet test for the Context/Specification framework Machine.Specifications
Stars: ✭ 30 (+66.67%)
Mutual labels:  visual-studio
CleanArchitectureDemo
This is a demo project built on .NET Core 3.1 Clean Architecture. Please refer the articles mentioned in the readme to learn more.
Stars: ✭ 33 (+83.33%)
Mutual labels:  visual-studio
RCCpp DX11 Example
Runtime Compiled C++ example based on the Dear ImGui DirectX11 Example
Stars: ✭ 35 (+94.44%)
Mutual labels:  visual-studio
vs-shell
GitHub action to set up the Visual Studio shell environment
Stars: ✭ 36 (+100%)
Mutual labels:  visual-studio
jQuery-datatable-server-side-net-core
A simple Visual Studio solution using jQuery DataTable with Server-Side processing using .NET 5
Stars: ✭ 71 (+294.44%)
Mutual labels:  visual-studio
xml-semantic-external-parser
A semantic external parser for XML files that can be used together with GMaster, PlasticSCM or SemanticMerge. Supports various XML formats, such as the Visual Studio project format.
Stars: ✭ 15 (-16.67%)
Mutual labels:  visual-studio
vs-material-icons-generator
This plugin will help you to set material design icons to your Xamarin projects In Visual Studio.
Stars: ✭ 50 (+177.78%)
Mutual labels:  visual-studio
VSSDK-Analyzers
Roslyn analyzers for Visual Studio extensions
Stars: ✭ 39 (+116.67%)
Mutual labels:  visual-studio
git-tools
This extension provides a git changes tool window, a graphical git history viewer and menus to launch Git Bash, Git Extenstions and TortoiseGit.
Stars: ✭ 72 (+300%)
Mutual labels:  visual-studio
vscode-theme
A modern, good-looking, productivity-increaser theme for Visual Studio Code
Stars: ✭ 46 (+155.56%)
Mutual labels:  visual-studio
C-Sharp-Learning-Journey
Some of the projects i made when starting to learn c#, winfroms and wpf
Stars: ✭ 95 (+427.78%)
Mutual labels:  visual-studio

probe-rs-vscode README

Debugger plugin for vscode, based on probe-rs.

Currently in early alpha stage, except for halting and running not a lot is working yet.

Development setup

The best way to debug and develop the plugin is to start the debug-adapter in server mode, and then attach to the server from vscode. The server can be started with the following command:

cargo run -- --server --port 8800

To run the vscode extension, a new windows of vscode containing the extension can be launched using the .vscode/launch.json configuration. Pressing F5 should open a new window which contains the extension. In that new window, open a project you want to debug, and then launch the extension using a configuration similiar to this:

{

    "version": "0.2.0",
    "configurations": [{
            "type": "probe_rs",
            "request": "attach",
            "name": "Example: gpio_hal_blinky, attach to debugger",
            "program": "${workspaceRoot}/target/thumbv6m-none-eabi/debug/examples/gpio_hal_blinky",
            "cwd": "${workspaceRoot}",
            "reset": true,
            "halt_after_reset": false,
            "server_mode": true,
            "server_port": 8800,
            "chip": "nrf5182"
        }
    ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].