In my design, I would like to use a constant current source pin from component A, which is normally used to drive an external LED, to activate the enable pin of another component, component B.
Here are more details:
- Component A is a fuel gauge (datasheet : URL).
It has three output pins (LEDCNTLA, LEDCNTLB, and LEDCNTLC) used to control external LEDs.
According to the reference manual (URL), it is possible to activate or deactivate the LEDs by writing to a specific register via SMBus (register 0x0054, bit 17).

- Component B is a boost converter (datasheet : URL).
The enable pin of the boost converter has a threshold of 1.5V.

- The diagram is as follows :

When I enable the LED, I want the boost converter to turn on, and when I disable the LED, I want the boost converter to turn off. However, I am concerned that this may not be possible because the LED output pin is a current source rather than a standard GPIO output.
Is there a circuit that would allow me to achieve this functionality?
Thank you!