User Activity

I'm using Comparator 2 on the STM8L151G4 with DAC1 on the inverting input. When the DAC outputs 0V, the current draw during Halt mode is < 1 uA. If the DAC outputs around 0.5V before the program enters Halt mode, the current draw is 80 uA in Halt mo...
#include <stm8l15x.h> #include <stm8l15x_pwr.h>   void main(void) { GPIO_Init(GPIOA, GPIO_Pin_All, GPIO_Mode_Out_PP_Low_Fast); GPIO_Init(GPIOB, GPIO_Pin_All, GPIO_Mode_Out_PP_Low_Fast); GPIO_Init(GPIOC, GPIO_Pin_All, GPIO_Mode_Out_PP_Low_Fast); ...
I want to program an external STM8 microcontroller using the ST-LINK/V2-1 portion of the NUCLEO-8L152R8 board. Is that possible? If so, what are the required steps?