Search found 1 match

by Stary
Sun Apr 14, 2024 4:03 pm
Forum: 3DS Development
Topic: How to get the mac address of the console
Replies: 3
Views: 1087

Re: How to get the mac address of the console

nwm::SOC is the internal interface used by soc, so you're not really meant to use it from applications. soc exposes the mac address via SOCU_GetNetworkOpt, here's a complete code sample including soc init: #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <3ds.h> void stall() { whi...