quiz Embedded Systems · 10 questions

ECSE 770 Integrated Concepts Review

help_outline 10 questions
timer ~5 min
auto_awesome AI-generated
0 / 10
Score : 0%
1

Which Sustainable Development Goal most directly supports Vehicle‑to‑Grid (V2G) technology?

2

Under IPP 12, what two conditions must be satisfied for overseas data disclosure?

3

What is the maximum allowed EIRP for an ESP32 operating under NZ's General User Radio Licence on the 2.4 GHz band?

4

In the COIN feedback model, which element comes immediately after 'Context'?

5

A channel has 20 MHz bandwidth and a linear SNR of 100. Using the Shannon Capacity Theorem, what is the theoretical maximum data rate (approx.)?

6

Which three 2.4 GHz Wi‑Fi channels are non‑overlapping in New Zealand?

7

How does an Extended Service Set (ESS) differ from a Basic Service Set (BSS) in Wi‑Fi architecture?

8

Why is risk management considered 'late' in the Waterfall model?

9

Which principle of Te Mana Raraunga emphasizes Māori authority over their own data?

10

What is the formula to size a fuse for an EVolocity controller, given its power rating (W) and battery voltage (V)?

menu_book

ECSE 770 Integrated Concepts Review

Review key concepts before taking the quiz

Course Overview: Integrated Concepts for Embedded Systems

Welcome to the ECSE 770 Integrated Concepts Review. This self‑paced module ties together sustainability, privacy law, radio regulations, feedback frameworks, information theory, Wi‑Fi architecture, and project‑management fundamentals that are essential for modern embedded systems engineers. By the end of the lesson you will be able to explain key standards, calculate theoretical limits, and apply best‑practice models in real‑world designs.

Sustainable Development Goal (SDG) 7 and Vehicle‑to‑Grid (V2G) Technology

Vehicle‑to‑Grid (V2G) enables electric vehicles to feed stored energy back into the power grid, supporting load balancing and renewable integration. Among the United Nations Sustainable Development Goals, SDG 7 – Affordable and Clean Energy is the most directly aligned with V2G because it targets universal access to reliable, sustainable energy sources and promotes innovative energy‑storage solutions.

  • Key point: V2G contributes to clean‑energy generation, reduces reliance on fossil‑fuel peaker plants, and helps meet the 2030 target for increased renewable electricity.
  • Remember: When discussing V2G in a sustainability context, always reference SDG 7 before SDG 11, SDG 13, or SDG 9.

New Zealand Privacy Act – IPP 12 Overseas Data Disclosure

Under Information Privacy Principle 12 (IPP 12) of the New Zealand Privacy Act, organisations may transfer personal information overseas only when two conditions are met:

  1. The overseas recipient provides comparable privacy protections to those required in New Zealand, or
  2. The individual whose data is being transferred has given informed consent for that specific disclosure.

This dual‑test ensures that personal data remains protected regardless of where it travels. Failure to satisfy either condition can result in privacy‑breach penalties.

NZ General User Radio Licence – ESP32 EIRP Limits on 2.4 GHz

The New Zealand Radio Spectrum Management (RSM) permits low‑power devices such as the ESP32 to operate under the General User Radio Licence. For the 2.4 GHz ISM band, the maximum allowed Effective Isotropic Radiated Power (EIRP) is 0 dBW (1 W). Exceeding this limit can cause interference with other services and may breach the licence.

  • Practical tip: When configuring the ESP32, set the transmit power to ≤ 0 dBW and verify with a calibrated power meter.
  • Why it matters: Maintaining compliance avoids costly fines and ensures coexistence with Wi‑Fi, Bluetooth, and other ISM devices.

COIN Feedback Model – Sequence of Elements

The COIN model (Context, Observation, Impact, Next steps) structures constructive feedback. After establishing the Context, the next logical element is the Observation, where the giver describes the specific behaviour or result that was noticed.

Following Observation, the model proceeds to Impact (how the behaviour affected the team or project) and finally to Next steps (suggested actions).

Shannon Capacity Theorem – Calculating Theoretical Maximum Data Rate

Shannon’s theorem defines the upper bound of reliable data transmission over a noisy channel: C = B \* log₂(1 + SNR), where C is capacity (bits per second), B is bandwidth (Hz), and SNR is the linear signal‑to‑noise ratio.

Given a 20 MHz channel (B = 20 × 10⁶ Hz) and a linear SNR of 100, the calculation is:

  • 1 + SNR = 101
  • log₂(101) ≈ 6.66 bits per Hz
  • C ≈ 20 × 10⁶ × 6.66 ≈ 133 × 10⁶ bits/s ≈ 133 Mbps

This figure represents an ideal, error‑free scenario; real‑world throughput will be lower due to protocol overhead and channel imperfections.

Non‑Overlapping 2.4 GHz Wi‑Fi Channels in New Zealand

Wi‑Fi channels in the 2.4 GHz band are spaced 5 MHz apart, but each channel occupies roughly 22 MHz of spectrum. To avoid co‑channel interference, only three channels can be used simultaneously without overlap. In New Zealand (as in most regions), the non‑overlapping set is:

  • Channel 1 (centered at 2.412 GHz)
  • Channel 6 (centered at 2.437 GHz)
  • Channel 11 (centered at 2.462 GHz)

Deploying these three channels on adjacent access points maximises spatial reuse and minimizes interference.

Extended Service Set (ESS) vs. Basic Service Set (BSS) in Wi‑Fi Architecture

An ESS is a collection of two or more BSSs that share a common SSID and are linked via a distribution system (usually a wired LAN). This architecture enables seamless roaming: a client can move from one BSS (access point) to another without losing its network session.

Key differences:

  • BSS – a single access point and its associated stations. It provides a localized coverage area.
  • ESS – multiple BSSs coordinated to appear as one logical network, extending coverage across larger spaces such as campuses or office buildings.

Key Takeaways

  • An ESS (Extended Service Set) is a collection of two or more BSSs (Basic Service Sets) that work together as a single logical network.
  • ESS enables seamless roaming for clients moving between the constituent BSSs without losing connectivity.
  • Each BSS is centered around its own access point; the ESS ties these APs together via a distribution system (usually a wired LAN).
  • The purpose of an ESS is to expand coverage area while maintaining a unified SSID.
How to Remember
  • Mnemonic: ESS = Expand Service Set – it expands a single BSS into many.
  • Tip: Think of an ESS as a “Wi‑Fi campus” where multiple APs (BSSs) share one name, letting you walk around without reconnecting.

Waterfall Model – Why Risk Management Appears Late

In the traditional Waterfall development lifecycle, phases are executed sequentially: requirements, design, implementation, verification, and maintenance. Risk management is often perceived as a “late” activity because:

  • Testing (verification) occurs after implementation, so many risks are only discovered near the end of the project.
  • The model’s rigid structure leaves little room for early risk identification or iterative mitigation.

Consequently, problems uncovered during testing can cause costly rework, highlighting the importance of integrating risk assessment earlier in modern agile or hybrid approaches.

Summary and Next Steps

This course has linked eight core concepts that frequently appear together in embedded‑systems examinations and professional practice. Review the key points, practice the calculations, and apply the feedback and risk‑management models in your own projects.

  • Re‑visit each section and quiz yourself using the original multiple‑choice questions.
  • Implement a simple ESP32 transmitter and verify that the EIRP stays below 0 dBW.
  • Design a small Wi‑Fi network using channels 1, 6, 11 and configure an ESS for seamless roaming.
  • Map a V2G prototype to SDG 7 objectives to demonstrate sustainability alignment.

By mastering these topics you will be better prepared for both academic assessments and real‑world embedded‑systems challenges.

Stop highlighting.
Start learning.

Join students who have already generated over 50,000 quizzes on Quizly. It's free to get started.