-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (68 loc) · 3.15 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - DSN 2025 Workshop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-title">
<h1>CRGS'25 Workshop (In conjuction with DSN 2025)</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="committee.html">Committee</a>
<a href="cfp.html">CFP</a>
<a href="keynote.html">Keynote</a>
<a href="program.html">Program</a>
</nav>
</header>
<main class="content">
<h2>About the Workshop</h2>
<p>The rise of IoT, edge computing, and Industry 4.0 has driven the demand for secure
and real-time capable gateways that can ensure safe and efficient communication
between embedded devices and cloud services. Smart Safe Gateways powered by
Real-Time Operating Systems (RTOS) present a crucial intersection of safety,
real-time performance, and robust security, serving as a backbone for
mission-critical applications in sectors like automotive, healthcare,
and industrial automation.
</p>
<p>
With the upcoming European Cyber Resilience Act (CRA), the focus will shift to
strengthening cybersecurity requirements for digital products and connected devices.
The CRA emphasizes the need for secure-by-design principles, continuous updates,
and resilience against cyber threats. The workshop will delve into how these
evolving regulations impact the design and deployment of RTOS-based smart gateways,
aligning technical advancements with regulatory compliance.
</p>
<p>
This workshop aims to explore the latest advancements, challenges, and research directions
in the field of smart safe gateways running RTOS. It will serve as a platform for industry
experts, researchers, and practitioners to discuss the integration of RTOS with secure gateway
technologies, address the safety and security challenges, and propose innovative solutions
for reliable data transmission and device management.
</p>
</main>
<footer>
<div class="footer-content">
<div class="footer-images">
<img src="images/naples3.jpeg" alt="Footer Image 1">
<img src="images/naples2.jpeg" alt="Footer Image 2">
</div>
<div class="sponsor-logo">
<p>Our Sponsors:</p>
<a href="https://www.sysgo.com/" target="_blank" rel="noopener noreferrer">
<img src="images/SYSGO_Logo_RGB.png" alt="Sponsor Logo 1">
</a>
<a href="https://www.lolipop-iot.eu/" target="_blank" rel="noopener noreferrer">
<img src="images/lolipop_logo.png" alt="Sponsor Logo 2">
</a>
</div>
<p class="footer-note">© CRGS'25 Workshop. All rights reserved, 2025.</p>
</div>
</footer>
</body>
</html>