Skip to content

Clarify the functional description of the touch_sense core #211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions hw/application_fpga/core/touch_sense/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# touch_sense

Core that handles touch senor events and provides them SW via an API.
Core that handles touch sensor events and provides them to the SW via
an API.

## Introduction

This core implements a touch sensor handler. The core detects and
holds events for SW to read. The touch sensor input is expected to be
a change in level from low (0) to high (1). When an event is seen, the
core will set a status bit that SW can read. SW must then clear the
event by writing to the status register.
core will set a status bit that SW can read.

The user is expected to lift the finger between multiple touch events.
SW must clear the captured event by writing to the status
register. The core will wait for the sensor input to become low again
before being able to detect another event.


## API
Expand Down