Electronic – FCC Low Oscilation

avrfcc

I have heard that if a circuit is operating at less then 1.2 MHz it does not need FCC certification.

Does an ATMega328 with with a 1Mhz External crystal, and the internal clock not used qualify for this exemption. Or does does the AVR use the internal 8Mhz clock for other stuff that I am not aware and thus not satisfactory for this exemption?

Taken from https://www.gpo.gov/fdsys/pkg/CFR-2011-title47-vol1/pdf/CFR-2011-title47-vol1-sec15-103.pdf

"(h) Digital devices in which both the highest frequency generated and the highest frequency used are less than
1.705 MHz and which do not operate from the AC power lines or contain provisions for operation while connected to the AC power lines. Digital devices that include, or make provision for the use of, battery eliminators, AC adaptors or battery chargers which permit operation while charging or that connect to the AC power lines indirectly, obtaining their power through another device which is connected to the AC power lines, do not fall under
this exemption. "

Best Answer

If the external crystal source is selected, the internal oscillator is disabled. So if you use a 1MHz external crystal, then yes, nothing in the AVR will be operating above 1MHz.

The AVR in its default configuration uses the 8MHz oscillator but internally divided by 8. So nothing outside the IC or even inside the chip after the prescaler will be running above 1.2MHz, so theoretically (though I'm not a lawyer, so don't take my word for this) that may not require certification either.


Note: The above is answering the question of whether the internal clock is enabled or not. I have in no way attempted to verify whether the 1.2MHz limit you mention in the question is correct or not. See @jp314's answer.