Skip to content

Commit fe29eab

Browse files
committed
Fix usage of wrongly named include file, fix inellisense in adc.h header
1 parent cedda30 commit fe29eab

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

ClusterRaymarcher/src/ClientBus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include <stdint.h>
33
#include <ch32v00x.h>
4-
#include "Bus.h"
4+
#include "bus.h"
55

66
class ClientBus: public Bus
77
{

ClusterRaymarcher/src/adc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <ch32v00x.h>
2+
13
void adcInit()
24
{
35
ADC_InitTypeDef ADC_InitStructure = {0};

ClusterRaymarcherBase/src/HostBus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "Bus.h"
2+
#include "bus.h"
33
#include "timer.h"
44
#include <stdint.h>
55

0 commit comments

Comments
 (0)