Skip to content

Commit 7bf937d

Browse files
committed
Initial checkin of MRI library for Portenta H7 Cortex-M4 core
1 parent 9d22ddf commit 7bf937d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+8087
-0
lines changed

libraries/MRI/examples/MRI/MRI.ino

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* This example demonstrates how to include the MRI library which
2+
allows to debug the Nano 33 BLE Cortex-M4 core with GDB via a
3+
serial interface.
4+
*/
5+
6+
#include <MRI.h>
7+
8+
void setup() {
9+
10+
}
11+
12+
void loop() {
13+
14+
}

libraries/MRI/library.properties

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=Monitor Remote Inspection
2+
version=1.0.0
3+
author=Alexander Entinger <a.entinger@arduino.cc>
4+
maintainer=Alexander Entinger <a.entinger@arduino.cc>
5+
sentence=Debug the ortenta H7 Cortex-M4 core with GDB
6+
paragraph=This library allows the user to debug the source code running on the Arduino Portenta H7 Cortex-M4 core with GDB via a serial connection.
7+
category=Communication
8+
url=
9+
architectures=mbed

libraries/MRI/src/MRI.h

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
Copyright (c) 2020 Arduino LLC. All right reserved.
3+
4+
This library is free software; you can redistribute it and/or
5+
modify it under the terms of the GNU Lesser General Public
6+
License as published by the Free Software Foundation; either
7+
version 2.1 of the License, or (at your option) any later version.
8+
9+
This library is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12+
See the GNU Lesser General Public License for more details.
13+
14+
You should have received a copy of the GNU Lesser General Public
15+
License along with this library; if not, write to the Free Software
16+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17+
*/
18+
19+
#ifndef MRI_H_
20+
#define MRI_H_
21+
22+
#include "core/mri.h"
23+
24+
#endif /* MRI_H_ */
25+

0 commit comments

Comments
 (0)