Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
34 views

I am working on creating OCSF schemas for watchdog logs and I came across some types - |User| |Access Denied| |System| |PHP| |Page Not Found| |Cron| |Security| |Form| |Update Manager| I need to know ...
Meenal's user avatar
  • 1
2 votes
0 answers
87 views

I am using an ESP32-C3 Dev Module on Windows 11 with Arduino IDE (ESP32 package 3.3.0). Minimal sketches, such as the following, immediately trigger a watchdog reset during startup: void setup() { ...
Luis Silva's user avatar
0 votes
0 answers
33 views

I got Problem with Reset Sources in stm32f103c8t6. when an independent watchdog reset occurs, IWD Reset Flag in RCC->CSR (Bit29) is not set! it works fine with SW and External and Power On Reset ...
ALI's user avatar
  • 31
0 votes
0 answers
15 views

The task is to get a GUI application that will track file system changes and write a log in real time to a text widget. Currently, file system changes are output only to the console. Any ideas on how ...
Oleksandr's user avatar
0 votes
1 answer
194 views

like the title suggests, I am using an esp32 and want to output a mp3 file from an SD-card via the i2s-Amp MAX98357a. To begin with, I was trying to get an example from the library running, but it ...
Sera's user avatar
  • 1
0 votes
1 answer
90 views

My use case is: Server side long running gRPC Streaming method. I want that the server method stops executing if the client does not send a request within a given period. Say 5 minutes for example. ...
Luke's user avatar
  • 127
0 votes
1 answer
119 views

I have 2 questions for window watchdog: I have an STM32 micro and I want to just check my window watchdog and use the wakeup interrupt for write some code before the system reset, But the interrupt ...
ali .V's user avatar
  • 1
0 votes
0 answers
57 views

I am facing problem where watchdog oncreated event trigger twice when a new file is created. Right now the script is monitoring a folder and when a new file is created or move to this folder it should ...
YYY's user avatar
  • 89
1 vote
2 answers
123 views

I have a Python program that uses a watchdog, the watchdog is running on a separate thread. In the main thread, I have no code, so in order to keep the program running I'm using a while true sleep. ...
Amir Kedem's user avatar
0 votes
1 answer
222 views

I'm using Watchdog for monitoring a specific folder. if there is a .txt file created, it needs some processing. But now something very strange has happened: when I manually dragged a .txt file into ...
suki_1216's user avatar
2 votes
0 answers
3k views

I have an intel platform (Alder Lake N50) and I'm trying to use the chipset watchdog hardware. My kernel is configured to have the iTCO_wdt module, when I insert it, the device is detected and /dev/...
zzi's user avatar
  • 118
0 votes
1 answer
191 views

I'm developing a system with a microservices architecture that relies on several Azure services for continuous inter-service communication. For context, here's a simplified overview of my setup: ...
user1877600's user avatar
1 vote
1 answer
42 views

i want to config watchdog.net for ocelot API gateway but when i login to dashboard watchdog and refresh for load data from database watchdog.net i had this error: and this is my program.cs builder....
Ali Naeimi's user avatar
0 votes
1 answer
593 views

I am using an ESP232 devkit and i am trying to start an Access Point where i can enter WiFi data, which then is Used to setup a WiFi Webserver to control Data. But whenever i enter wrong wifi data, it ...
Friedrich Harald's user avatar
0 votes
1 answer
98 views

I have a python flask (using connexion) project that I need to reload if I change any of the files in the project. This project is built into a python module using setup.py, then run. I tried using ...
Dave's user avatar
  • 1,328
0 votes
0 answers
413 views

I would like run my python script once a file in a certain folder is modified. To do this, I chose Watchdog. First, I created an own project folder on my local machine and created and activated a venv....
OneHotEncoder's user avatar
0 votes
0 answers
828 views

I developed a tiny python app to constantly run -> utilizing the watchdog package's capabilities of checking for events. When I drop an event in one folder on my desktop, I want to subsequently ...
edrinaldi88's user avatar
1 vote
1 answer
263 views

I found a piece of watchdog driver code for an i.MX RT 1xxx Arm Cortex-M7, before initializing the WDT, there was an Icache disable, and an enable just after the WDT initialization. Why is that done ...
alasa995's user avatar
2 votes
1 answer
2k views

I have the problem that the connection between my client and an OPC UA server is interrupted every few days. The server publishes new values every two seconds, which the client receives via a pub sub ...
heMe's user avatar
  • 35
1 vote
1 answer
112 views

I have written a file watcher in Python that will watch a specific folder in my laptop and whenever a new parquet file is created in it, the watcher will pull it and read the data inside using Pandas ...
Arnab Roy's user avatar
  • 317
0 votes
0 answers
45 views

i am trying to write a watchdog that will monitor the changes in Main.py file and will restart the script if the error occures. The watchdog works on files that doesn't include RPi.GPIO library, but ...
Kristonela's user avatar
0 votes
1 answer
240 views

from os import scandir, rename from os.path import splitext, exists, join from shutil import move import time import logging from watchdog.observers import Observer from watchdog.events import ...
ayevee's user avatar
  • 1
0 votes
1 answer
1k views

The Microcontroller I am using is a ESP-WROOM-32: board model: ESP32-ST software: ESP-IDF working on windows with arduino 1.8.19 includes: #include <Arduino.h> #include <iostream> using ...
JK Effects's user avatar
1 vote
1 answer
221 views

For the arduino Nano 33 BLE Sense board, the standard avr/wdt.h is not available. And it seems that no standard library provides it. How to use the watchdog system for this board ? I found no full ...
tjbtjbtjb's user avatar
0 votes
1 answer
1k views

I'm on my personal project to create a esp8266 module that can read several sensor from a vehicle and it can sends data over mqtt. so I have written the code where I try to reading the speed sensor ...
Socrates's user avatar

1
2 3 4 5
12