質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
C++

C++はC言語をもとにしてつくられた最もよく使われるマルチパラダイムプログラミング言語の1つです。オブジェクト指向、ジェネリック、命令型など広く対応しており、多目的に使用されています。

Arduino

Arduinoは、AVRマイコン、単純なI/O(入出力)ポートを備えた基板、C言語を元としたArduinoのプログラム言語と、それを実装した統合開発環境から構成されたシステムです。

Q&A

解決済

1回答

7109閲覧

Switchをarduinoで操作したい

marisayuxtukuri

総合スコア21

C++

C++はC言語をもとにしてつくられた最もよく使われるマルチパラダイムプログラミング言語の1つです。オブジェクト指向、ジェネリック、命令型など広く対応しており、多目的に使用されています。

Arduino

Arduinoは、AVRマイコン、単純なI/O(入出力)ポートを備えた基板、C言語を元としたArduinoのプログラム言語と、それを実装した統合開発環境から構成されたシステムです。

0グッド

0クリップ

投稿2020/06/21 07:55

編集2020/06/21 07:59

arduinoを使い、パソコンからswitchを操作したです。
https://go-go-poke.hateblo.jp/entry/2020/01/24/003421を参考にやってみたのですが、エラーが出てマイコンに書き込むことができませんでした。

C:\Program Files (x86)\Arduino\libraries\ArduinoSTL-1.1.0\src\del_opnt.cpp:25:56: error: 'nothrow_t' in namespace 'std' does not name a type _UCXXEXPORT void operator delete(void* ptr, const std::nothrow_t& ) throw() { ^~~~~~~~~ C:\Program Files (x86)\Arduino\libraries\ArduinoSTL-1.1.0\src\del_ops.cpp:25:50: error: 'std::size_t' has not been declared _UCXXEXPORT void operator delete(void* ptr, std::size_t) throw(){ ^~~~~~ exit status 1 ボードArduino Leonardoに対するコンパイル時にエラーが発生しました。

このエラー文を見るとArudunoSTLのdel_ops.cppに問題があるのかなと思いましたのでdel_ops.cppのコードも載せます。よろしくお願いします。

del_ops.cpp

1/* Copyright (C) 2004 Garrett A. Kajmowicz 2 3 This file is part of the uClibc++ Library. 4 5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 10 This library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Lesser General Public License for more details. 14 15 You should have received a copy of the GNU Lesser General Public 16 License along with this library; if not, write to the Free Software 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18*/ 19 20#include <new> 21#include <cstdlib> 22#include <func_exception> 23 24#ifndef NO_NOTHROW 25_UCXXEXPORT void operator delete(void* ptr, const std::nothrow_t& ) throw() { 26 free(ptr); 27} 28#endif 29

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

Penpen7

2020/06/25 21:40

エラーの画面の表示はこれだけですか?
guest

回答1

0

ベストアンサー

私もまったく同様のエラーが発生しましたが,解決したので以下に示します.

私の環境はArduino UNO R3とArduinoIDE1.8.13 (Windows10)です.
この問題は,Arduino AVRボードのバージョンに問題があるらしいです.詳しくは,以下のgithubに投げられていたissueを確認ください.
https://github.com/mike-matera/ArduinoSTL/issues/56

issueの中で提案されていた現状の解決策は,
ArduinoIDEの上部バーより,ツール > ボード:"使用するボードの名前" > ボードマネージャ を選択し,"Arduino AVR Boards" のバージョンを1.8.3から1.8.2へダウングレードすることだそうで,私も実行して確認出来ました.

解決の一助になるかは不明ですが,情報を共有いたします.

投稿2020/06/25 23:28

Cause-Mike

総合スコア7

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問