<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[HowTo MY_CORE_ONLY]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">For a project, i need to separate the initialisation, so i figure out i could use the MY_CORE_ONLY option. I didn't find any documentation about that option, so i use sketch example from the forum but that dont work. Actually i have that :</p>
<pre><code>#define MY_NODE_ID 123
#define sensorid 2

#define MY_RADIO_RFM69
#define MY_RFM69_NEW_DRIVER
#define MY_RFM69_FREQUENCY RFM69_433MHZ // Set your frequency here
#define MY_IS_RFM69HW // Omit if your RFM is not "H"
#define MY_RFM69_TX_POWER_DBM 5
#define MY_RFM69_MAX_POWER_LEVEL_DBM 10

#define MY_RFM69_SPI_SPEED (4*10*1000ul)  // datasheet says 10Mhz max.

#define MY_RFM69_NETWORKID (38)
#define MY_PASSIVE_NODE //+248 B

#define MY_CORE_ONLY
#define MY_DEBUG
#define MY_DEBUG_VERBOSE_RFM69
#define MY_RFM69_IRQ_PIN 2 //DI0#define MY_RFM69_CS_PIN 10 //D8 // NSS. Use MY_RFM69_SPI_CS for older versions (before 2.2.0)


#include &lt;MySensors-Attiny.h&gt;

MyMessage msg(sensorid, V_TRIPPED);


void setup() {
  transportInit();
  transportSetAddress(MY_NODE_ID);

}

void presentation() {
  
//Pour le premier démarrage, on attend d'avoir un bon voltage avant de continuer
  present(sensorid, S_DOOR, "test", false);

}

void loop() {

send(msg.set(hwCPUVoltage()));
wait(10000);

}

</code></pre>
<p dir="auto">And i get that message from serial :</p>
<pre><code>0 RFM69:INIT
1 RFM69:INIT:PIN,CS=10,IQP=2,IQN=0
8 RFM69:PTX:LEVEL=5 dBm
80 !TSF:SND:TNR
10150 !TSF:SND:TNR
</code></pre>
<p dir="auto">Someone could give some information about the my_core_only option ? Seems i miss some part.</p>
<p dir="auto">Thx in advance :)</p>
]]></description><link>https://forum.mysensors.org/topic/12146/howto-my_core_only</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 10:14:11 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/12146.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 21 Apr 2023 14:37:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HowTo MY_CORE_ONLY on Fri, 21 Apr 2023 18:55:53 GMT]]></title><description><![CDATA[<p dir="auto">That's the point, i don't see important part which change with or without my_core_only.<br />
I think i miss something</p>
]]></description><link>https://forum.mysensors.org/post/113657</link><guid isPermaLink="true">https://forum.mysensors.org/post/113657</guid><dc:creator><![CDATA[Frog]]></dc:creator><pubDate>Fri, 21 Apr 2023 18:55:53 GMT</pubDate></item><item><title><![CDATA[Reply to HowTo MY_CORE_ONLY on Fri, 21 Apr 2023 18:27:31 GMT]]></title><description><![CDATA[<p dir="auto">no info, nothing found  :(</p>
<p dir="auto"><a href="https://github.com/mysensors/MySensors/search?q=MY_CORE_ONLY" rel="nofollow ugc">https://github.com/mysensors/MySensors/search?q=MY_CORE_ONLY</a></p>
]]></description><link>https://forum.mysensors.org/post/113655</link><guid isPermaLink="true">https://forum.mysensors.org/post/113655</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Fri, 21 Apr 2023 18:27:31 GMT</pubDate></item></channel></rss>