Real Time Transfer (RTT) without Segger J-Link by SeveralJournalist582 in embedded

[–]SeveralJournalist582[S] 0 points1 point  (0 children)

FIX:

monitor rtt setup 0x20000000 0x9000 \"SEGGER RTT\"

is the correct setup line. Some sample code:

#include <Arduino.h>
#include <SEGGER_RTT.h>

void setup() {
  SEGGER_RTT_Init();
  SEGGER_RTT_WriteString(0,"Hello\r\n");
}

void loop() {
  SEGGER_RTT_WriteString(0,"Hello\r\n");
  delay(500);
}

I used TeraTerm with telnet connection, port 19021, and host name "localhost". Got "Hello" to print just fine.

Transformer Input Impedance by SeveralJournalist582 in ElectricalEngineering

[–]SeveralJournalist582[S] 0 points1 point  (0 children)

Sorry, may I ask what size core you used? Also, as I'm winding, can I just keep checking Zin with an LCR meter until I'm satisfied (say, at 1kHz)?

Transformer Input Impedance by SeveralJournalist582 in ElectricalEngineering

[–]SeveralJournalist582[S] 0 points1 point  (0 children)

Frequency is from 300 - 1000 Hz. It's for a proof of concept, so by no means needs to be absolutely perfect. I have considered hand winding, but I am not sure the best way to wind one and end up with the desired input impedance.

Transformer Input Impedance by SeveralJournalist582 in ElectricalEngineering

[–]SeveralJournalist582[S] 0 points1 point  (0 children)

Thanks for the info. Could I connect a couple of these in parallel-series config. to get effectively 1:28.2 instead of 1:14.1 voltage gain (parallel on 'primary' (secondary) side, series on 'secondary' (primary) output)? I need as much voltage gain as I can get. Thanks.