Replies: 4 comments 18 replies
-
I am also getting a similiar issue when trying to use I2s: The connected target does not have support for System.Device.I2s |
Beta Was this translation helpful? Give feedback.
-
Yes, it is safe but it's just a subset and some suggestions. You have the more exhaustive list here and here |
Beta Was this translation helpful? Give feedback.
-
I2C is set to off for the C3 series, that's why the target is reporting what you're seeing. |
Beta Was this translation helpful? Give feedback.
-
I don’t sorry, always been admin on repos so never thought about it
Get Outlook for iOS<https://aka.ms/o0ukef>
…________________________________
From: José Simões ***@***.***>
Sent: Thursday, July 13, 2023 8:55:00 PM
To: nanoframework/Home ***@***.***>
Cc: Andrew Thomas ***@***.***>; Mention ***@***.***>
Subject: Re: [nanoframework/Home] ESP32-C3 - The connected target does not have support for nanoFramework.Hardware.Esp32.Rmt (Discussion #1198)
😯 indeed!! One needs to be authenticated to download artifacts from a PR build. It seems... as I'm alwyas authenticated, I had never spotted this... pretty sure there is a permission for this...
Do you happen to know what it is?
—
Reply to this email directly, view it on GitHub<#1198 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AFMCRB64J52BXCWJPBCPYPLXP6ZWJANCNFSM6AAAAAATE4NSI4>.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Hi,
I am using ESP32-C3-DevKitC-02 Development Board, and trying to change the LED light on the board.
From reading it looks this is and addressable” RGB LED.
Googling has shown me that I need to use nanoFramework.Hardware.Esp32.Rmt.
I have shown code below.
However when I deploy this I get error:
[The connected target does not have support for nanoFramework.Hardware.Esp32.Rmt.]
Do I need to flash the board with extra libraries to support these packages? I can't find anything else to flash that indeicates how to make this work?
Any help appreciated - have searched as much as I can for a solution but come up with nothing.
` s_GpioController = new GpioController();
GpioPin led = s_GpioController.OpenPin(8, PinMode.Output);
using (var rmt_transmitter = new TransmitterChannel(8))
{
// transmitter configuration
rmt_transmitter.CarrierEnabled = false;
//rmt_transmitter.isSource80MHz = true;
rmt_transmitter.ClockDivider = 4; // base period 80 MHz / 4 => 20 MHz -> 0.05 us
//rmt_transmitter.IsChannelIdle = true;
//rmt_transmitter.TransmitIdleLevel = false;
Beta Was this translation helpful? Give feedback.
All reactions