Replies: 2 comments
-
I have confirmed with the hardware engineer that the reason for such a large power consumption is the 5v to 3.3v circuit. If the power supply is 3.3v, it is estimated that it can reach 0.6uA as stated in the specification |
Beta Was this translation helpful? Give feedback.
0 replies
-
Several other radios (SX127x, SX126x etc.) have a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I was using CC1101, I found that the library only provided the standby API function of CC1101, but no API function of sleep mode. Will updates be added in the future?
![企业微信截图_17365842302403](https://private-user-images.githubusercontent.com/51262475/402241315-c77eb3f7-982d-4159-8f11-af35df7b6e9e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5NjIzNDQsIm5iZiI6MTczODk2MjA0NCwicGF0aCI6Ii81MTI2MjQ3NS80MDIyNDEzMTUtYzc3ZWIzZjctOTgyZC00MTU5LThmMTEtYWYzNWRmN2I2ZTllLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA3VDIxMDA0NFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWVlNDMxZGE0OTlkZmYwMDljMzkzM2EwYjlmNGRjZDQwY2FmYTU2ZDYwZjgxZjUwODhlOWMyYmIzMWUwZTgzZmImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.7K_eXub2y_Lhdval_9KFeYLEFEkcsuvhSQYjCjRJRsE)
![企业微信截图_17365842493594](https://private-user-images.githubusercontent.com/51262475/402241335-219cacac-5da5-4fe5-b8de-35911995d4b1.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5NjIzNDQsIm5iZiI6MTczODk2MjA0NCwicGF0aCI6Ii81MTI2MjQ3NS80MDIyNDEzMzUtMjE5Y2FjYWMtNWRhNS00ZmU1LWI4ZGUtMzU5MTE5OTVkNGIxLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA3VDIxMDA0NFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWUxNTNmZWMwNTEyZDZjNTI5ZTFjODU3OWYxM2Q2ZGIxNjM3OWI5ZDZiNTJjYTkwOGFhYmYzYmM1ZDZjMDM2OTMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.6r60H-rjIo9FgDt4VSKTbkgVmBnSJkpN0v8miGC1Piw)
I found that the CC1101 can be put into sleep mode by adding an SPI instruction to the standby() function, such as this one:
#define RADIOLIB_CC1101_CMD_POWER_DOWN 0x39 //This one is in the CC1101.h file
SPIsendCommand(RADIOLIB_CC1101_CMD_POWER_DOWN);
Before use:
After use:
I see the specification is 0.6uA, I do not know whether other register configurations are needed to continue to reduce power consumption
Beta Was this translation helpful? Give feedback.
All reactions