diff --git a/_static/images/bash-and-boris-gosc-proposal.webp b/_static/images/bash-and-boris-gosc-proposal.webp new file mode 100644 index 0000000000000000000000000000000000000000..b35b00b28f63c3c9d977abd82553158d2947b7da Binary files /dev/null and b/_static/images/bash-and-boris-gosc-proposal.webp differ diff --git a/_templates/forum.html b/_templates/forum.html new file mode 100644 index 0000000000000000000000000000000000000000..e18ed0f275a9a6178068f65e143c477191393e57 --- /dev/null +++ b/_templates/forum.html @@ -0,0 +1,16 @@ +{% if pagename == "ideas/index" %} + <a role="button" href="https://bbb.io/gsocml"> + <i class="fa-brands fa-discourse"></i> More Ideas on Forum + </a> +{% else %} + <a role="button" href="https://forum.beagleboard.org/new-topic?category=gsoc&tags=gsoc"> + <i class="fa-brands fa-discourse"></i> Discuss on Forum + </a> +{% endif %} + +<div class="card bg-light mt-4 text-center"> + <div class="card-body"> + <p class="card-text text-dark"> + <a href="https://www.beagleboard.org/">BeagleBoard.org</a> is all about being open, please discuss in public on our <a href="https://bbb.io/gsocml">forum</a>!</p> + </div> +</div> \ No newline at end of file diff --git a/_templates/mission.html b/_templates/mission.html new file mode 100644 index 0000000000000000000000000000000000000000..2bc47218b08b44ba9410db7c6323880675ed7f7a --- /dev/null +++ b/_templates/mission.html @@ -0,0 +1,21 @@ +<div class="card bg-light mt-4 text-center"> + <div class="card-header bg-primary text-light"> + What is the mission? + </div> + <div class="card-body"> + <p class="card-text text-dark"> + We don’t want to just make more things. We want to enable individuals to make the things that dominate their lives, rather than leaving it up to someone else. Google Summer of Code with BeagleBoard.org is a great way to learn skills highly in demand while making a difference in the world. + </p> + </div> +</div> + +<div class="card bg-light mt-4 text-center"> + <div class="card-header bg-success text-light"> + How to build an embedded system? + </div> + <div class="card-body"> + <p class="card-text text-dark"> + An embedded system is built using a computer dedicated to a specific purpose, like a toaster, coffee machine, dish washer, thermostat or anti-lock brakes. You can think of an embedded system as a computer designed to not look like a computer and to automate things in the physical world. The <a href="https://www.beagleboard.org/">BeagleBoard.org</a> community is loaded with experts on building open source embedded systems, join our <a href="https://bbb.io/gsocml">forum</a> to connect. + </p> + </div> +</div> \ No newline at end of file diff --git a/_templates/pdf.html b/_templates/pdf.html index 6f6e190e89063bde94b715278b4d2e25194dc8f1..28a3c30997286acf3665b67027d263cbb699f4a4 100644 --- a/_templates/pdf.html +++ b/_templates/pdf.html @@ -1,8 +1,8 @@ {% if pages_slug != "index" %} {% for proposal_name in proposals %} {% if pagename == "proposals/"+proposal_name %} - <a class="btn btn-danger btn-sm btn-block text-light" role="button" href="{{proposal_name}}.pdf"> - <i class="fa-solid fa-download"></i> {{proposal_name}}.pdf + <a role="button" href="{{proposal_name}}.pdf"> + <i class="fa-solid fa-download"></i> Download PDF </a> {% endif %} {% endfor %} diff --git a/conf.py b/conf.py index e88b28ed36ae592e6002adb62e4cb057ea9ad43c..56d02931159a7ec03f3cb6b8f8a28cfabf0f1dce 100644 --- a/conf.py +++ b/conf.py @@ -57,10 +57,26 @@ html_css_files = [ # Pages entry without primary (left) sidebar html_sidebars = { - "ideas/index": [], + "**": ["sidebar-nav-bs", "mission"], + "ideas/index": [], + "index": [] } html_theme_options = { + "external_links": [ + { + "url": "https://summerofcode.withgoogle.com/help", + "name": "Help", + }, + { + "url": "https://summerofcode.withgoogle.com/rules", + "name": "Rules", + }, + { + "url": "https://summerofcode.withgoogle.com/terms", + "name": "Terms", + }, + ], "header_links_before_dropdown": 4, "show_prev_next": True, "icon_links": [ @@ -117,8 +133,8 @@ html_theme_options = { "footer_end": ["last-updated"], # "content_footer_items": ["last-updated"], "secondary_sidebar_items": { - "**": ["page-toc", "edit-this-page", "sourcelink","pdf"] - } + "**": ["page-toc", "edit-this-page", "sourcelink","pdf","forum"] + }, } proposals = [] diff --git a/guides/contributor.rst b/guides/contributor.rst index 7f6dcb7271880a48db8060e717069eb12cdb2089..ad332bf2a070e2062d56b998b72c07669100a49c 100644 --- a/guides/contributor.rst +++ b/guides/contributor.rst @@ -7,15 +7,29 @@ Contributor Guide :width: 100% :align: center +.. important:: + + Contributors will be expected to execute a series of prerequisites to demonstrate and + expand familiarity with embedded systems development. Don't worry, the + `live chat <https://bbb.io/gsocchat>`_ channel has over 1,000 active members to + travel with you on your journey. + General requirements ******************** +.. note:: + + Google Summer of Code is open to individuals age 18 and older in most countries who are new or beginner + contributors to open source coding projects. Read more on the GSoC site + `Rules page <https://summerofcode.withgoogle.com/rules>`_ and the + `FAQ page <https://developers.google.com/open-source/gsoc/faq>`_. + All projects have the following basic requirements: 1. Contributors must create accounts on our `OpenBeagle <https://openbeagle.org/>`_, `Discord <https://bbb.io/gsocchat>`_ and `Beagle Forum <http://bbb.io/gsocml>`_ prior to creating their application. 2. All newly generated materials must be released under an `open source license <http://www.opensource.org/licenses>`_. Individual contributors shall retain copyright on their works. 3. Contributors will demonstrate their ability to cross-compile and utilize version control software by creating a “Hello World†application and generating a pull request to `jadonk/gsoc-application <https://github.com/jadonk/gsoc-application/tree/master/ExampleEntryJasonKridner>`_. For assistance, please visit our `Discord <https://bbb.io/gsocchat>`_ or utilize the `Beagle Forum <http://bbb.io/gsocml>`_. The “Hello World†application must print your name and the date out in an ARM Linux environment. Freely available emulators may be used to test your application or you can ask anyone on the chat or mailing list to help you test. -4. All projects will produce reusable software components and will not be “what–I-built-over-my-summer-vacation†projects. Including a hardware component is welcome, but the project deliverable will be software that may be utilized by a wide audience of the `BeagleBoard.org <https://www.beagleboard.org/>`_ community. +4. All projects will produce reusable software components and will not be “what-I-built-over-my-summer-vacation†projects. Including a hardware component is welcome, but the project deliverable will be software that may be utilized by a wide audience of the `BeagleBoard.org <https://www.beagleboard.org/>`_ community. 5. Contributors will demonstrate their ability to collaborate by creating a project proposal on this site using our :ref:`proposal template <gsoc-proposal-template>` and utilizing our `Discord <https://bbb.io/gsocchat>`_ to collect quotes regarding the usefulness of their proposal to the `BeagleBoard.org <https://www.beagleboard.org/>`_ community. **Use of Google Docs for proposal development is discouraged due to insufficient revision control and extensive use of computing resources having numerous documents open simultaneously**. 6. Source code generated during the project must be released on `OpenBeagle <https://openbeagle.org/>`_ (and we’ll setup a mirror on `Github.com <http://github.com/>`_). 7. Contributors will provide two recorded audio/video presentations uploaded to Youtube or Vimeo (screencasts are appropriate), one near the beginning of the project summarizing their project goals and another in the wrap-up phase to summarize their accomplishments. Examples can be found in :ref:`Past_Projects`. There is no requirement to show your faces or use English. diff --git a/guides/index.rst b/guides/index.rst index fef9612c9d85186cfe13047d1c0e3d1e587ae12b..7d94ed7fb6810f1090175d5a913fb4eed6ef2a27 100644 --- a/guides/index.rst +++ b/guides/index.rst @@ -3,6 +3,21 @@ Guides ###### +.. youtube:: 7jD2tChhrWM + :width: 100% + :align: center + +.. admonition:: What is Google Summer of Code? + :class: admonition-code + + Spend your summer break writing code and learning about open source development while earning money! + Accepted contributors work with a mentor and become a part of the open source community. Many become lifetime + open source developers! The 2024 contributor application window will be open from + `March 18th 2024 <https://developers.google.com/open-source/gsoc/timeline#march_18_-_1800_utc>`_ to + `April 2nd 2024 <https://developers.google.com/open-source/gsoc/timeline#april_2_-_1800_utc>`_! + But don't wait for then to engage! Come to our `Discord <https://bbb.io/gsocchat>`_ and + `Forum <https://bbb.io/gsocml>`_ to share ideas today. + This section includes guides for :ref:`contributors <gsoc-contributor-guide>` & :ref:`mentors <gsoc-mentor-guide>` who want to participate in GSoC 2024 with `BeagleBoard.org <www.beagleboard.org>`_. It's highly recommended to check `GSoC Frequently Asked Questions <https://developers.google.com/open-source/gsoc/faq>`_. For anyone who just want to contribute to this site we also have diff --git a/guides/proposal.rst b/guides/proposal.rst index 3aff3238713ea454fb1c85bb96d9bacfadce777f..9ab99f9ef600ffce0fad680651e6830eca06e237 100644 --- a/guides/proposal.rst +++ b/guides/proposal.rst @@ -21,7 +21,7 @@ How to write an *unsuccessful* proposal Unsuccessful proposals often: -1. Try to pass off previous school projects as something to do for GSoC. The work has already done, and the project often has very little to do with `BeagleBoard.org hardware <https://www.beagleboard.org/boards>`_, +1. Try to pass off previous school projects as something to do for GSoC. The work is already done, and the project often has very little to do with `BeagleBoard.org hardware <https://www.beagleboard.org/boards>`_, 2. Show up shortly before the submission deadline with only a half page of “proposalâ€, being little more than a name, contact information, and a statement of “I will work hardâ€, 3. Are generic and sent to every other GSoC org with very few details on deliverables or schedule, or 4. Introduce an idea that was never talked about to the `BeagleBoard.org <https://www.beagleboard.org/>`_ mentors in our `Forum <https://bbb.io/gsocml>`_ and submitted without ever engaging the Beagle community. @@ -49,7 +49,7 @@ To make the project proposal writing process easier for all the GSoC contributor .. tip:: Start with :ref:`gsoc-site-editing-guide` to simplify the proposal writing process using OpenBeagle CI. It's always recommended to create a fork of `gsoc.beagleboard.io repo on OpenBeagle <https://openbeagle.org/gsoc/gsoc.beagleboard.io>`_ and clone on your local machine. Instructions for - setting up Sphinx on local machine are also provided on :ref:`gsoc-site-editing-guide`. For any query you, can reach out on + setting up Sphinx on local machine are also provided on :ref:`gsoc-site-editing-guide`. For any query, you can reach out on our `Discord <https://bbb.io/gsocchat>`_ or `Forum <https://bbb.io/gsocml>`_. You can either open your cloned `gsoc.beagleboard.io repo <https://openbeagle.org/gsoc/gsoc.beagleboard.io>`_ using Visual Studio Code on your local machine or use OpenBeagle Web IDE. Now, follow steps below to write your proposal, @@ -65,9 +65,8 @@ You can either open your cloned `gsoc.beagleboard.io repo <https://openbeagle.or .. raw:: html - <br> - <a class="btn btn-danger btn-sm btn-block text-light" role="button" href="/proposals/template.pdf"> - <i class="fa-solid fa-download"></i> template.pdf + <a role="button" href=""> + <i class="fa-solid fa-download"></i> Download PDF </a> diff --git a/guides/site-editing.rst b/guides/site-editing.rst index 8faaa10e9423995eda0074a8c9154d66bcce0471..d7b2e00c9d158c41b8f8b322fee39c2d6c0b4e65 100644 --- a/guides/site-editing.rst +++ b/guides/site-editing.rst @@ -68,7 +68,7 @@ After selecting the file you have to click on ``edit button`` and then choose ei .. note:: Choosing ``Web IDE`` will load a `Visual Studio Code Server <https://code.visualstudio.com/docs/remote/vscode-server>`_ - instance which is a feature rich source code editor. Depending on the internent connection your machine will take some to + instance which is a feature rich source code editor. Depending on the internent connection, your machine will take some time to load the editor and it can be a bit heavy for some machines to handle. Once fully loaded it should run smoothly but, if that is not the case then please consider using single file editor option. Considering majority of the users will be using ``Web IDE`` option, we are using the ``Web IDE`` for the rest of this guide. @@ -107,11 +107,11 @@ Now you have to select a file and start editing. Below image shows some, :align: center .. tip:: Just like you do on your normal Visual Studio Code desktop application, to commit your changes you can either - click on Source control ( :fa:`code-branch;pst-color-secondary` ) button or press ``CTRL + SHIFT + G`` to see all the edited fils. + click on Source control ( :fa:`code-branch;pst-color-secondary` ) button or press ``CTRL + SHIFT + G`` to see all the edited files. -After swithing to source control you have to, +After switching to source control you have to, -1. Add a commit message in the input feild. +1. Add a commit message in the input field. 2. Click on ``Commit to main`` button or click on drop down button to choose ``Commit to new branch``. .. image:: media/commit-changes.png @@ -132,17 +132,17 @@ ee/user/project/protected_branches.html>`_ by default. .. image:: media/commit-branch.png :align: center -When all done right, the lower right side of the ``Web IDE`` you'll a prompt showing ``Success! Your changes have been committed`` message with -two button, +When all done right, at the lower right side of the ``Web IDE`` you'll see a prompt showing ``Success! Your changes have been committed`` message with +two buttons, -1. ``Got to Project`` +1. ``Go to Project`` 2. ``Continue working`` .. image:: media/commit-success.png :align: center If you click on ``Go to Project`` button, you'll see the commit successfully applied as shown in the red box in the image below and the -green tick shows on the right side indicates that the CI build was also successful. +green tick shown on the right side indicates that the CI build was also successful. .. image:: media/commit.png :align: center @@ -156,15 +156,15 @@ Create a pull request After making your changes and commiting them to your forked repo, you are set to create a new `pull request / merge request <https://en.wikipedia.org/wiki/Distributed_version_control#Pull_requests>`_ so that those changes can be merged to upstream -repo. To start your new PR click on the dedicated button to create a new merge request and fill out all the details. The image -below shows all the feilds you have to update, +repo. To start your new PR, click on the dedicated button to create a new merge request and fill out all the details. The image +below shows all the fields you have to update, -1. Provided a good title that reflects your work. +1. Provide a good title that reflects your work. 2. Add a detailed description of the work you have done. Add pictures whenever seems useful. 3. (Optional) you can assign it to yourself if you'll be working on further updates or assign it to someone else who might want to work on the comments we may provide on your work. 4. Add ``lorforlinux`` or ``jkridner`` as reviewer for PRs with site content update or add your mentor as reviewer if it's related to project work / proposal. -5. If you want your commits to be shows as a single commit then you can choose the ``sqash commits ...`` check box. -6. Check if all your commits are shown in the bottom of the screen and if everything looks okay then click on ``Create merge request`` button. +5. If you want your commits to be shown as a single commit, then you can choose the ``sqash commits ...`` check box. +6. Check if all your commits are shown in the bottom of the screen and if everything looks okay, then click on ``Create merge request`` button. .. tip:: If you are still working on some updates, you may also choose ``Mark as draft`` checkbox (below title) which indicates that you are seeking feedback before making your commits suitable to merge. diff --git a/ideas/index.rst b/ideas/index.rst index d05aa972561cbcdf53f2c8b361ac0763b23aed06..76cef981abff793724f078fbe08b46fd81a9adf0 100644 --- a/ideas/index.rst +++ b/ideas/index.rst @@ -1,163 +1,179 @@ :html_theme.sidebar_primary.remove: true +:sd_hide_title: true .. _gsoc-project-ideas: Ideas ###### -.. sidebar:: Welcome - - Welcome to the project ideas page for `GSoC 2024 <https://developers.google.com/open-source/gsoc/timeline>`_. The - BeagleBoard.org community is loaded with experts on building open source embedded systems. An embedded - system is built using a computer dedicated to a specific purpose, like a toaster, coffee machine, dish washer, thermostat - or anti-lock brakes. You can think of an embedded system as a computer designed to not look like a computer - and to automate things in the physical world. - -.. admonition:: Did you know? - - BeagleBoard.org has been accepted to be a mentoring organization in the Google Summer of Code (GSoC) for twelve previous years! +.. image:: ../_static/images/ideas-below.webp + :align: center .. admonition:: How to participate? - Contributors are expected to go through the list of ideas below and join the discussion by clicking on the + Contributors are expected to go through the list of ideas dropdown below and join the discussion by clicking on the ``Discuss on forum`` button. All ideas have colorful badges for ``Complexity`` and ``Size`` for making the selection process easier for contributors. Anyone is welcome to introduce new ideas via the `forum gsoc-ideas tag <https://forum.beagleboard.org/tag/gsoc-ideas>`_. Only ideas with sufficiently experienced mentor backing as deemed by the administrators will be added here. - .. table:: + +------------------------------------+-------------------------------+ + | Complexity | Size | + +====================================+===============================+ + | :bdg-danger:`High complexity` | :bdg-danger-line:`350 hours` | + +------------------------------------+-------------------------------+ + | :bdg-success:`Medium complexity` | :bdg-success-line:`175 hours` | + +------------------------------------+-------------------------------+ + | :bdg-info:`Low complexity` | :bdg-info-line:`90 hours` | + +------------------------------------+-------------------------------+ + +.. card:: Low-latency I/O RISC-V CPU core in FPGA fabric + + :fas:`microchip;pst-color-primary` FPGA gateware improvements :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` + + ^^^^ + + BeagleV-Fire features RISC-V 64-bit CPU cores and FPGA fabric. In that FPGA fabric, we'd like to + implement a RISC-V 32-bit CPU core with operations optimized for low-latency GPIO. This is similar + to the programmable real-time unit (PRU) RISC cores popularized on BeagleBone Black. + + | **Goal:** RISC-V-based CPU on BeagleV-Fire FPGA fabric with GPIO + | **Hardware Skills:** Verilog, Verification, FPGA + | **Software Skills:** RISC-V ISA, assembly, `Linux`_ + | **Possible Mentors:** `Cyril Jean <https://forum.beagleboard.org/u/vauban>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ - +------------------------------------+-------------------------------+ - | Complexity | Size | - +====================================+===============================+ - | :bdg-danger:`High complexity` | :bdg-danger-line:`350 hours` | - +------------------------------------+-------------------------------+ - | :bdg-success:`Medium complexity` | :bdg-success-line:`175 hours` | - +------------------------------------+-------------------------------+ - | :bdg-info:`Low complexity` | :bdg-info-line:`90 hours` | - +------------------------------------+-------------------------------+ + ++++ -.. important:: + .. button-link:: https://forum.beagleboard.org/t/low-latency-risc-v-i-o-cpu-core/37156 + :color: danger + :expand: - BeagleBoard.org is a community centric organization and we keep all of our discussion open for our - community on our `forum <https://bbb.io/gsocml>`_. Discussion for all the project ideas, proposals or development will - be done via our `forum <https://bbb.io/gsocml>`_ as well and must be open for everyone to access. **No - direct messages should be sent to mentors or community members until unless there is a private matter.** + :fab:`discourse;pst-color-light` Discuss on forum -.. grid:: 1 1 1 2 - :margin: 4 4 0 0 - :gutter: 4 - .. grid-item:: +.. card:: Update beagle-tester for mainline testing - .. image:: ../_static/images/ideas-below.webp - :align: center + :fab:`linux;pst-color-primary` Linux kernel improvements :bdg-success:`Medium complexity` :bdg-danger-line:`350 hours` - .. grid-item-card:: + ^^^^ - :fas:`exclamation;pst-color-danger` Important: **No direct messages** - ^^^ + Utilize the ``beagle-tester`` application and ``Buildroot`` along with device-tree and udev symlink concepts within + the OpenBeagle continuous integration server context to create a regression test suite for the Linux kernel + and device-tree overlays on various Beagle computers. - BeagleBoard.org is all about being open. Please keep discussion in public - on `our forum <https://bbb.io/gsocml>`_. + | **Goal:** Execution on Beagle test farm with over 30 mikroBUS boards testing all mikroBUS enabled cape interfaces (PWM, ADC, UART, I2C, SPI, GPIO and interrupt) performing weekly mainline Linux regression verification + | **Hardware Skills:** basic wiring, familiarity with embedded serial interfaces + | **Software Skills:** device-tree, `Linux`_, `C`_, continuous integration with GitLab, Buildroot + | **Possible Mentors:** `Deepak Khatri <https://forum.beagleboard.org/u/lorforlinux>`_, `Anuj Deshpande <https://forum.beagleboard.org/u/Anuj_Deshpande>`_, `Dhruva Gole <https://forum.beagleboard.org/u/dhruvag2000>`_ - .. grid-item-card:: Low-latency I/O RISC-V CPU core in FPGA fabric + ++++ - | :fas:`microchip;pst-color-primary` FPGA gateware improvements - | :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` - ^^^ + .. button-link:: https://forum.beagleboard.org/t/update-beagle-tester-for-cape-mikrobus-new-board-and-upstream-testing/37279 + :color: danger + :expand: - BeagleV-Fire features RISC-V 64-bit CPU cores and FPGA fabric. In that FPGA fabric, we'd like to - implement a RISC-V 32-bit CPU core with operations optimized for low-latency GPIO. This is similar - to the programmable real-time unit (PRU) RISC cores popularized on BeagleBone Black. + :fab:`discourse;pst-color-light` Discuss on forum - | **Goal:** RISC-V-based CPU on BeagleV-Fire FPGA fabric with GPIO - | **Hardware Skills:** `Verilog`_, `verification`_, `FPGA`_ - | **Software Skills:** `RISC-V ISA`_, `assembly`_, `Linux`_ - | **Possible Mentors:** `Cyril Jean <https://forum.beagleboard.org/u/vauban>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ +.. card:: Upstream wpanusb and bcfserial - +++ - .. button-link:: https://forum.beagleboard.org/t/low-latency-risc-v-i-o-cpu-core/37156 - :color: danger - :expand: + :fab:`linux;pst-color-primary` Linux kernel improvements :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` + + ^^^^ - :fab:`discourse;pst-color-light` Discuss on forum + These are the drivers that are used to enable Linux to use a BeagleConnect Freedom as a SubGHz IEEE802.15.4 radio (gateway). + They need to be part of upstream Linux to simplify on-going support. There are several gaps that are known before they are + acceptable upstream. + | **Goal:** Add functional gaps, submit upstream patches for these drivers and respond to feedback + | **Hardware Skills:** Familiarity with wireless communication + | **Software Skills:** `C`_, `Linux`_ + | **Possible Mentors:** `Ayush Singh <https://forum.beagleboard.org/u/ayush1325>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ - .. grid-item-card:: Update beagle-tester for mainline testing + ++++ - | :fab:`linux;pst-color-primary` Linux kernel improvements - | :bdg-success:`Medium complexity` :bdg-danger-line:`350 hours` - ^^^ + .. button-link:: https://forum.beagleboard.org/t/upstream-wpanusb-and-bcfserial/37186 + :color: danger + :expand: - Utilize the ``beagle-tester`` application and ``Buildroot`` along with device-tree and udev symlink concepts within - the OpenBeagle continuous integration server context to create a regression test suite for the Linux kernel - and device-tree overlays on various Beagle computers. + :fab:`discourse;pst-color-light` Discuss on forum - | **Goal:** Execution on Beagle test farm with over 30 mikroBUS boards testing all mikroBUS enabled cape interfaces (PWM, ADC, UART, I2C, SPI, GPIO and interrupt) performing weekly mainline Linux regression verification - | **Hardware Skills:** `basic wiring`_, `embedded serial interfaces`_ - | **Software Skills:** `device-tree`_, `Linux`_, `C`_, `OpenBeagle CI`_, `Buildroot`_ - | **Possible Mentors:** `Deepak Khatri <https://forum.beagleboard.org/u/lorforlinux>`_, `Anuj Deshpande <https://forum.beagleboard.org/u/Anuj_Deshpande>`_, `Dhruva Gole <https://forum.beagleboard.org/u/dhruvag2000>`_ +.. card:: ``librobotcontrol`` support for newer boards - +++ - .. button-link:: https://forum.beagleboard.org/t/update-beagle-tester-for-cape-mikrobus-new-board-and-upstream-testing/37279 - :color: danger - :expand: + :fas:`wand-sparkles;pst-color-danger` Automation and industrial I/O :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` - :fab:`discourse;pst-color-light` Discuss on forum + ^^^^ - .. grid-item-card:: Upstream wpanusb and bcfserial + Preliminary librobotcontrol support for BeagleBone AI, BeagleBone AI-64 and BeagleV-Fire has been drafted, but it + needs to be cleaned up. We can also work on support for Raspberry Pi if UCSD releases their Hat for it. - | :fab:`linux;pst-color-primary` Linux kernel improvements - | :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` - ^^^ + | **Goal:** Update librobotcontrol for Robotics Cape on BeagleBone AI, BeagleBone AI-64 and BeagleV-Fire + | **Hardware Skills:** Basic wiring, some DC motor familiarity + | **Software Skills:** `C`_, `Linux`_ + | **Possible Mentors:** `Deepak Khatri <https://forum.beagleboard.org/u/lorforlinux>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ + + ++++ - These are the drivers that are used to enable Linux to use a BeagleConnect Freedom as a SubGHz IEEE802.15.4 radio (gateway). - They need to be part of upstream Linux to simplify on-going support. There are several gaps that are known before they are - acceptable upstream. + .. button-link:: https://forum.beagleboard.org/t/librobotcontrol-support-for-newer-boards/37187 + :color: danger + :expand: - | **Goal:** Add functional gaps, submit upstream patches for these drivers and respond to feedback - | **Hardware Skills:** `wireless communications`_ - | **Software Skills:** `C`_, `Linux`_ - | **Possible Mentors:** `Ayush Singh <https://forum.beagleboard.org/u/ayush1325>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ + :fab:`discourse;pst-color-light` Discuss on forum - +++ - .. button-link:: https://forum.beagleboard.org/t/upstream-wpanusb-and-bcfserial/37186 - :color: danger - :expand: +.. card:: Upstream Zephyr Support on BBAI-64 R5 - :fab:`discourse;pst-color-light` Discuss on forum + :fas:`timeline;pst-color-secondary` RTOS/microkernel imporvements :bdg-success:`Medium complexity` :bdg-success-line:`350 hours` + + ^^^^ - .. grid-item-card:: ``librobotcontrol`` support for newer boards + Incorporating Zephyr RTOS support onto the Cortex-R5 cores of the TDA4VM SoC along with Linux operation on the A72 core. The objective is to harness the combined capabilities of both systems + to support BeagleBone AI-64. - | :fas:`wand-sparkles;pst-color-danger` Automation and industrial I/O - | :bdg-success:`Medium complexity` :bdg-success-line:`175 hours` - ^^^ + | **Goal:** submit upstream patches to support BeagleBone AI-64 and respond to feedback + | **Hardware Skills:** Familiarity with ARM Cortex R5 + | **Software Skills:** `C`_, `RTOS <https://docs.zephyrproject.org/latest/develop/getting_started/index.html>`_ + | **Possible Mentors:** `Dhruva Gole <https://forum.beagleboard.org/u/dhruvag2000>`_, `Nishanth Menon <https://forum.beagleboard.org/u/nishanth_menon>`_ + | **Upstream Repository:** `The primary repository for Zephyr Project <https://github.com/zephyrproject-rtos/zephyr>`_ - Preliminary librobotcontrol support for BeagleBone AI, BeagleBone AI-64 and BeagleV-Fire has been drafted, but it - needs to be cleaned up. We can also work on support for Raspberry Pi if UCSD releases their Hat for it. + ++++ - | **Goal:** Update librobotcontrol for Robotics Cape on BeagleBone AI, BeagleBone AI-64 and BeagleV-Fire - | **Hardware Skills:** `basic wiring`_, `motors`_ - | **Software Skills:** `C`_, `Linux`_ - | **Possible Mentors:** `Deepak Khatri <https://forum.beagleboard.org/u/lorforlinux>`_, `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_ + .. button-link:: https://forum.beagleboard.org/t/upstream-zephyr-support-on-bbai-64-r5/37294/1 + :color: danger + :expand: - +++ - .. button-link:: https://forum.beagleboard.org/t/librobotcontrol-support-for-newer-boards/37187 - :color: danger - :expand: + :fab:`discourse;pst-color-light` Discuss on forum - :fab:`discourse;pst-color-light` Discuss on forum +.. card:: Enhanced Media Experience with AI-Powered Commercial Detection and Replacement + + :fas:`brain;pst-color-secondary` Deep Learning :bdg-success:`Medium complexity` :bdg-success-line:`350 hours` + + ^^^^ + + Leveraging the capabilities of BeagleBoard’s powerful processing units, the project will focus on creating a real-time, efficient solution that enhances media consumption experiences by seamlessly integrating custom audio streams during commercial breaks. + + | **Goal:** Build a deep learning model, training data set, training scripts, and a runtime for detection and modification of the video stream. + | **Hardware Skills:** Ability to capture and display video streams using `Beagleboard ai-64 <https://www.beagleboard.org/boards/beaglebone-ai-64>`_ + | **Software Skills:** `Python <https://www.python.org/>`_, `TensorFlow <https://www.tensorflow.org/>`_, `TFlite <https://www.tensorflow.org/lite>`_, `Keras <https://www.tensorflow.org/guide/keras>`_, `GStreamer <https://gstreamer.freedesktop.org/>`_, `OpenCV <https://opencv.org/>`_ + | **Possible Mentors:** `Jason Kridner <https://forum.beagleboard.org/u/jkridner>`_, `Deepak Khatri <https://forum.beagleboard.org/u/lorforlinux>`_ + + ++++ + + .. button-link:: https://forum.beagleboard.org/t/enhanced-media-experience-with-ai-powered-commercial-detection-and-replacement/37358 + :color: danger + :expand: + + :fab:`discourse;pst-color-light` Discuss on forum .. button-link:: https://forum.beagleboard.org/tag/gsoc-ideas - :color: light + :color: danger :expand: + :outline: - Please visit `our forum <https://forum.beagleboard.org/t/gsoc-ideas>`_ to see newer ideas being discussed! + :fab:`discourse;pst-color-light` Visit our forum to see newer ideas being discussed! -.. tip:: +.. tip:: + You can also check our our :ref:`gsoc-old-ideas` and :ref:`Past_Projects` for inspiration. .. _C: diff --git a/ideas/old/index.rst b/ideas/old/index.rst index a8c48fa3c3eb1ea09e12db4c97596068f897a3eb..d61e4d2de001aedab3287f782ff3c1ff7967e380 100644 --- a/ideas/old/index.rst +++ b/ideas/old/index.rst @@ -1,3 +1,5 @@ +:orphan: + .. _gsoc-old-ideas: Old GSoC Ideas diff --git a/index.rst b/index.rst index f832256f1ba30e275bfa3a7386673a83aeaa7ccc..6c0e8a046fc8eff6b4644d72d92b98f18a908c80 100644 --- a/index.rst +++ b/index.rst @@ -4,42 +4,21 @@ contain the root `toctree` directive. :html_theme.sidebar_secondary.remove: true +:sd_hide_title: true GSoC @ BeagleBoard.org ####################### .. image:: _static/images/project-with-beagleboard.webp -.. admonition:: What is Google Summer of Code? - :class: admonition-code - - Spend your summer break writing code and learning about open source development while earning money! - Accepted contributors work with a mentor and become a part of the open source community. Many become lifetime - open source developers! The 2024 contributor application window will be open from - `March 18th 2024 <https://developers.google.com/open-source/gsoc/timeline#march_18_-_1800_utc>`_ to - `April 2nd 2024 <https://developers.google.com/open-source/gsoc/timeline#april_2_-_1800_utc>`_! - But don't wait for then to engage! Come to our `Discord <https://bbb.io/gsocchat>`_ and - `Forum <https://bbb.io/gsocml>`_ to share ideas today. - -.. youtube:: 7jD2tChhrWM - :width: 100% - :align: center - -.. note:: - - Google Summer of Code is open to individuals age 18 and older in most countries who are new or beginner - contributors to open source coding projects. Read more on the GSoC site - `Rules page <https://summerofcode.withgoogle.com/rules>`_ and the - `FAQ page <https://developers.google.com/open-source/gsoc/faq>`_. - .. grid:: 1 1 1 3 :margin: 4 4 0 0 - :gutter: 4 + :gutter: 2 .. grid-item-card:: :link: https://openbeagle.org/ - :fab:`gitlab;pst-color-primary` Open Source Development + :fab:`gitlab;fa-fade pst-color-dark` Open Source Development ^^^^^^^^^^ Experience working on impactful open source project which @@ -48,7 +27,7 @@ GSoC @ BeagleBoard.org .. grid-item-card:: :link: https://www.beagleboard.org/boards - :fas:`microchip;pst-color-primary` Free Hardware + :fas:`microchip;fa-fade pst-color-dark` Free Hardware ^^^^^^^^^^ Recieve BeagleBoard.org open source single board computer, @@ -57,12 +36,44 @@ GSoC @ BeagleBoard.org .. grid-item-card:: :link: https://developers.google.com/open-source/gsoc/help/student-stipends - :fas:`sack-dollar;pst-color-primary` Handsome Stipend + :fas:`sack-dollar;fa-fade pst-color-dark` Handsome Stipend ^^^^^^^^^^ Earn while making impactful contributions to the open source community, Stipend can be upto $6600 based on your country. +.. image:: _static/images/bash-and-boris-gosc-proposal.webp + +.. grid:: 1 1 1 3 + :margin: 4 4 0 0 + :gutter: 1 + + .. grid-item:: + + .. button-ref:: gsoc-contributor-guide + :color: info + :outline: + :expand: + + .. grid-item:: + .. button-ref:: gsoc-project-ideas + :color: info + :outline: + :expand: + + .. grid-item:: + + .. button-ref:: gsoc-proposal-guide + :color: info + :outline: + :expand: + +.. admonition:: Did you know? + + BeagleBoard.org has been accepted to be a mentoring organization in the + Google Summer of Code (GSoC) for twelve previous years! + + .. admonition:: BeagleBoard.org background :class: admonition-clock-back @@ -84,32 +95,24 @@ GSoC @ BeagleBoard.org Get inspiration from some :ref:`Past_Projects`. -.. grid:: 1 1 1 3 - :margin: 4 4 0 0 - :gutter: 4 - - .. grid-item-card:: + .. grid:: 1 1 1 3 + :margin: 4 4 0 0 + :gutter: 4 - .. youtube:: -giV6Xr8RtY - :width: 100% + .. grid-item:: - .. grid-item-card:: + .. youtube:: -giV6Xr8RtY + :width: 100% - .. youtube:: RWBzyHNetOE - :width: 100% + .. grid-item:: - .. grid-item-card:: + .. youtube:: RWBzyHNetOE + :width: 100% - .. youtube:: CDbEAq33vdA - :width: 100% - -.. important:: - - Contributors will be expected to execute a series of prerequisites to demonstrate and - expand familiarity with embedded systems development. Don't worry, the - `live chat <https://bbb.io/gsocchat>`_ channel has over 1,000 active members to - travel with you on your journey. + .. grid-item:: + .. youtube:: CDbEAq33vdA + :width: 100% .. admonition:: Some other amazing places to find Beagles :class: hint @@ -118,25 +121,25 @@ GSoC @ BeagleBoard.org made cheeseburgers. Check the below projects made by incredible professional innovators for some inspiration. -.. grid:: 1 1 2 2 - :margin: 4 4 0 0 - :gutter: 4 - - .. grid-item-card:: + .. grid:: 1 1 2 2 + :margin: 4 4 0 0 + :gutter: 4 + + .. grid-item-card:: - :fas:`rocket;pst-color-primary` Europa Rover Prototype - ^^^^^^^^^^ + :fas:`rocket;pst-color-primary` Europa Rover Prototype + ^^^^^^^^^^ - .. youtube:: sY5WQG3-3mo - :width: 100% + .. youtube:: sY5WQG3-3mo + :width: 100% - .. grid-item-card:: + .. grid-item-card:: - :fas:`burger;pst-color-primary` Cheeseburger Robot - ^^^^^^^^^^ + :fas:`burger;pst-color-primary` Cheeseburger Robot + ^^^^^^^^^^ - .. youtube:: CbL_3le40qc - :width: 100% + .. youtube:: CbL_3le40qc + :width: 100% .. image:: _static/images/explore-ideas.webp :align: center diff --git a/proposals/template.rst b/proposals/template.rst index 1fd3c35857f694cc8319b1b3519483090817919f..8c25cc47df773f3a03088fe401046caab977937a 100644 --- a/proposals/template.rst +++ b/proposals/template.rst @@ -29,7 +29,7 @@ and fill out this template. About ===== -- **Forum:** :fab:`discourse` `ayush1325 (Ayush Singh) <https://forum.beagleboard.org/u/ayush1325>`_ +- **Forum:** :fab:`discourse` `u/ayush1325 (Ayush Singh) <https://forum.beagleboard.org/u/ayush1325>`_ - **OpenBeagle:** :fab:`gitlab` `ayush1325 (Ayush Singh) <https://openbeagle.org/ayush1325>`_ - **IRC:** :fas:`comments` `jkridner (Jason Kridner) <https://web.libera.chat/gamja/#beagle>`_ - **Github:** :fab:`github` `jadonk (Jason Kridner) <https://github.com/jadonk>`_ @@ -202,7 +202,7 @@ What will you do if you get stuck on your project and your mentor isn’t around Benefit ======== -If successfully completed, what will its impact be on the `BeagleBoard.org <https://www.beagleboard.org/>`_ community? Include quotes from `BeagleBoard.org <http://beagleboard.org/>` +If successfully completed, what will its impact be on the `BeagleBoard.org <https://www.beagleboard.org/>`_ community? Include quotes from `BeagleBoard.org <https://www.beagleboard.org/>`_. community members who can be found on our `Discord <https://bbb.io/gsocchat>`_ and `BeagleBoard.org forum <https://bbb.io/gsocml/13>`_. Misc